mass untag

This commit is contained in:
2018-12-06 16:28:04 +00:00
parent 8445bdeb91
commit b6d799e5c0
34 changed files with 158 additions and 2624 deletions

View File

@@ -1,13 +0,0 @@
using AyaNova.Biz;
namespace AyaNova.Models
{
public class TagGroupMapInfo
{
public long TagId { get; set; }
public long TagGroupId { get; set; }
}
}

View File

@@ -1,15 +0,0 @@
using AyaNova.Biz;
namespace AyaNova.Models
{
//Used by TagGroup controller to map a group of tags to an object
public class TagMapGroupInfo
{
public long TagGroupId { get; set; }
public long TagToObjectId { get; set; }
public AyaType TagToObjectType { get; set; }
}
}

View File

@@ -1,14 +0,0 @@
using AyaNova.Biz;
namespace AyaNova.Models
{
//Used by Tag controller to map a tag to an object
public class TagMapInfo
{
public long TagId { get; set; }
public long TagToObjectId { get; set; }
public AyaType TagToObjectType { get; set; }
}
}