72 lines
1.5 KiB
C#
72 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Big.Lito.Data.DataModel
|
|
{
|
|
using System;
|
|
using Big.Lito.Data.Enum;
|
|
|
|
public class ProjectModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets project id
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public string ProjectName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets author
|
|
/// </summary>
|
|
public string Author { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets created date
|
|
/// </summary>
|
|
public DateTime CreatedDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets updated date
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|