16 lines
384 B
C#
16 lines
384 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Sockeye.Models
|
|
{
|
|
|
|
//See core-picklist-autocomplete-template-system.txt for details
|
|
public class PickListTemplate
|
|
{
|
|
public long Id { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
|
|
public string Template { get; set; }//JSON fragment of picklist template
|
|
|
|
}
|
|
}
|