88 lines
2.1 KiB
C#
88 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Data.DataModel
|
|
{
|
|
public class ProjectModel
|
|
{
|
|
List<LayerModel> _layers = new List<LayerModel>();
|
|
|
|
/// <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 out path
|
|
/// </summary>
|
|
public string OutPath { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets created date
|
|
/// </summary>
|
|
public DateTime CreatedDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets updated date
|
|
/// </summary>
|
|
public DateTime LastUpdatedDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public double HologramWidth { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public double HologramHeight { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public double FrameWidth { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public double FrameHeight { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public int FrameResolutionX { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public int FrameResolutionY { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public int GrayRangeHigh { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public int GrayRangeLow { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets layers
|
|
/// </summary>
|
|
public List<LayerModel> Layers {
|
|
get { return _layers; }
|
|
set { _layers = value; }
|
|
}
|
|
|
|
}
|
|
}
|