using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Thermo.Active.Model.DatabaseModels { [Table("machine")] public class MachineModel { [Key] [Column("id")] public int MachineId { get; set; } [Column("name")] public string Model { get; set; } [Column("unique_id")] public string UniqueId { get; set; } } }