This commit is contained in:
@@ -20,6 +20,7 @@ namespace AyaNova.Models
|
||||
public virtual DbSet<DataListView> DataListView { get; set; }
|
||||
public virtual DbSet<Tag> Tag { get; set; }
|
||||
public virtual DbSet<FormCustom> FormCustom { get; set; }
|
||||
public virtual DbSet<PickListTemplate> PickListTemplate { get; set; }
|
||||
|
||||
|
||||
//Note: had to add this constructor to work with the code in startup.cs that gets the connection string from the appsettings.json file
|
||||
|
||||
15
server/AyaNova/models/PickListTemplate.cs
Normal file
15
server/AyaNova/models/PickListTemplate.cs
Normal 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
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user