24 lines
655 B
C#
24 lines
655 B
C#
|
using System;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace GenCycleVDP.Db
|
|||
|
{
|
|||
|
[Table("Cycles")]
|
|||
|
internal class DbCycle
|
|||
|
{
|
|||
|
[Column("idCycle"), Required, Key]
|
|||
|
public int IdCycle { get; set; }
|
|||
|
[Column("numVdp")]
|
|||
|
public int NumVdp { get; set; }
|
|||
|
[Column("numCycle")]
|
|||
|
public int NumCycle { get; set; }
|
|||
|
[Column("factStart")]
|
|||
|
public DateTime FactStart { get; set; }
|
|||
|
[Column("thinkEnd")]
|
|||
|
public DateTime ThinkEnd { get; set; }
|
|||
|
[Column("factEnd")]
|
|||
|
public DateTime FactEnd { get; set; }
|
|||
|
}
|
|||
|
}
|