This commit is contained in:
2020-03-12 18:37:31 +00:00
parent 73662fab87
commit 2ac227875f
5 changed files with 215 additions and 175 deletions

View File

@@ -0,0 +1,15 @@
using System.ComponentModel.DataAnnotations;
namespace AyaNova.Models
{
//See core-picklist-autocomplete-template-system.txt for details
public partial class PickListTemplate
{
public long Id { get; set; }
public uint ConcurrencyToken { get; set; }
public string Template { get; set; }//JSON fragment of picklist template
}
}