This commit is contained in:
19
server/AyaNova/models/ICoreBizObjectModel.cs
Normal file
19
server/AyaNova/models/ICoreBizObjectModel.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
namespace AyaNova.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface for biz object models with standard fields
|
||||
/// used for bulk operations etc
|
||||
/// </summary>
|
||||
internal interface ICoreBizObjectModel
|
||||
{
|
||||
public long Id {get;set;}
|
||||
public uint Concurrency { get; set; }
|
||||
|
||||
public string Wiki { get; set; }
|
||||
public string CustomFields { get; set; }
|
||||
public List<string> Tags { get; set; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user