using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagMan.Data.Tenant.DbModels
{
///
/// Tabella dei grezzi
///
[Table("MachGroupList")]
public class MachGroupModel
{
[Key, Column("DbId"), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int MachGroupDbId { get; set; }
///
/// Id geometrico Grezzo (barra intera)
///
[Column("MachGroupId")]
public int MachGroupId { get; set; }
///
/// Proj di appartenenza
///
public int ProjDbId { get; set; }
///
/// Data Start
///
[Column("DtStart")]
public DateTime DtStart { get; set; }
///
/// Data End
///
[Column("DtEnd")]
public DateTime DtEnd { get; set; }
}
}