using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Big.Lito.Data.DataModel { public class HeightmapModel { public HeightmapModel() { //int nslices = 400; //int MinLev = 50; //int MaxLev = 255; //int bord = 0; //int W = 100; //int nRep = 1; //int nSlicesTexture = 1; //string fPath; NSlices = 400; LowLevelBrightness = 50; HighLevelBrightness = 255; MaxSlices = 40000; BorderSize = 0; PictureWidth = 100; Repeats = 1; NSlicesTexture = 1; Percent = 0; Frequency = 10; } /// /// Gets or sets project id /// public int Id { get; set; } /// /// Gets or sets project name /// public string ProjectName { get; set; } /// /// Gets or sets project name /// public int HighLevelBrightness { get; set; } /// /// Gets or sets progress max value /// public int LowLevelBrightness { get; set; } /// /// Gets or sets progress min value /// public int NSlices { get; set; } /// /// Gets or sets progress min value /// public int NSlicesTexture { get; set; } /// /// Gets or sets max number of slices value /// public int MaxSlices { get; set; } /// /// Gets or sets max number of slices value /// public int BorderSize { get; set; } /// /// Gets or sets max number of slices value /// public int PictureWidth { get; set; } /// /// Gets or sets progress current value /// public int Repeats { get; set; } /// /// Gets or sets progress current value /// public string FPath { get; set; } public int Percent { get; set; } public int Frequency { get; set; } } }