using System.Collections.Generic; namespace AyaNova.Models { /// /// Interface for biz object models with standard fields /// used for bulk operations etc /// 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 Tags { get; set; } } }