28 lines
673 B
C#
28 lines
673 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Thermo.Active.Model.DatabaseModels
|
|
{
|
|
[Table("offset")]
|
|
public class NcOffsetModel
|
|
{
|
|
[Key]
|
|
[Column("id")]
|
|
public int OffsetId { get; set; }
|
|
|
|
[Column("nc_offset_id")]
|
|
public int NcOffsetId { get; set; }
|
|
|
|
[Column("lenght")]
|
|
public double Lenght { get; set; }
|
|
|
|
[Column("radius")]
|
|
public double Radius { get; set; }
|
|
|
|
[Column("wear_length")]
|
|
public double WearLength { get; set; }
|
|
|
|
[Column("wear_radius")]
|
|
public double WearRadius { get; set; }
|
|
}
|
|
} |