blob: d6012da5d49dd1f3f3d73cc190c719bac787b1db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Tango.DAL.Local.DB
{
using System;
using System.Collections.Generic;
public partial class BRUSH_STOPS
{
public long ID { get; set; }
public string GUID { get; set; }
public System.DateTime LAST_UPDATED { get; set; }
public string SEGMENT_GUID { get; set; }
public string COLOR_SPACE_GUID { get; set; }
public double OFFSET_PERCENT { get; set; }
public long STOP_INDEX { get; set; }
public double CYAN { get; set; }
public double MAGENTA { get; set; }
public double YELLOW { get; set; }
public double BLACK { get; set; }
public long RED { get; set; }
public long GREEN { get; set; }
public long BLUE { get; set; }
public double L { get; set; }
public double A { get; set; }
public double B { get; set; }
public double V0 { get; set; }
public double V1 { get; set; }
public double V2 { get; set; }
public double V3 { get; set; }
public double V4 { get; set; }
public double V5 { get; set; }
public double V6 { get; set; }
public double V7 { get; set; }
public string PANTON_GUID { get; set; }
}
}
|