17 lines
372 B
C#
17 lines
372 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
|
|
public partial class DataListTemplate
|
|
{
|
|
public long Id { get; set; }
|
|
public uint ConcurrencyToken { get; set; }
|
|
[Required]
|
|
public string DataListKey { get; set; }
|
|
public string Template { get; set; }//JSON fragment template
|
|
|
|
}
|
|
}
|