This commit is contained in:
2018-09-07 19:16:29 +00:00
parent d2783cf626
commit bd6f351c8a
7 changed files with 109 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
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

@@ -2,7 +2,7 @@ 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; }