using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using wispro.sp.entity; namespace wispro.sp.share { public class ProjectContents { public ProjectContentRecord ProjectContentRecord { get; set; } public List ProjectWorkContents { get; set; } } public class ViewProjectWorkContent : ProjectWorkContent { public ModifyState modifyState { get; set; } } public enum ModifyState { UnChanged, Modified, New, Deleted } }