BigLitho/Large.Lito.Database/Make3_Treko3D/Data/DataModel/LayerModel.cs

92 lines
2.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Data.DataModel
{
public class LayerModel
{
/// <summary>
/// Gets or sets project id
/// </summary>
public int Id { get; set; }
/// <summary>
/// Gets or sets project id
/// </summary>
public int Order { get; set; }
/// <summary>
/// Gets or sets layer name
/// </summary>
public string LayerName { get; set; }
/// <summary>
/// Gets or sets project name
/// </summary>
public string TechnologyName { get; set; }
/// <summary>
/// Gets or sets project name
/// </summary>
public string OpticalSchema { get; set; }
/// <summary>
/// Gets or sets project name
/// </summary>
public int ProjectId { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public int[] TraceProfile { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public double LayerLeft { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public double LayerTop { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public double LayerWidth { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public double LayerHeight { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public int ArcWidth { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public double RadiusMax { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public double Step { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public string SourceFilePath { get; set; }
/// <summary>
/// Gets or sets profile color
/// </summary>
public string AnglesFilePath { get; set; }
}
}