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