This commit is contained in:
2020-12-29 20:11:46 +00:00
parent 4e249d5c9b
commit d80f8aaa53
6 changed files with 302 additions and 7 deletions

View File

@@ -15,8 +15,8 @@ namespace AyaNova.Models
public string Name { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); }
public bool? Active { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); }
public string Wiki { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); }
public string CustomFields { get; set; }
public List<string> Tags { get; set; }
public string CustomFields { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); }
public List<string> Tags { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); }
public AyaNova.Biz.AyaType AyaType { get; }
}