using System; using System.Collections.Generic; using System.Text; namespace Big.Lito.Data.DataModel { using System; using Big.Lito.Data.Enum; public class ProjectModel { /// /// Gets or sets project id /// public int Id { get; set; } /// /// Gets or sets project name /// public string ProjectName { get; set; } /// /// Gets or sets author /// public string Author { get; set; } /// /// Gets or sets created date /// public DateTime CreatedDate { get; set; } /// /// Gets or sets updated date /// public DateTime UpdatedDate { get; set; } public string HomeDir { get; set; } public float FrameWidth { get; set; } public float FrameHeight { get; set; } public int ResW { get; set; } public int ResH { get; set; } public string ObjName { get; set; } public float ObjHeight { get; set; } public float ObjWidth { get; set; } public int NRows { get; set; } public int NCols { get; set; } public float CoX { get; set; } public float CoY { get; set; } public int NSlices { get; set; } public int LowLevelBrightness { get; set; } public int HighLevelBrightness { get; set; } public int Repeats { get; set; } public bool success { get; set; } } }