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 Step.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; } } }