using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebDoorCreator.Data.DbModels { #nullable disable // // This is here so CodeMaid doesn't reorganize this document // [Table("SerializedDoors")] public partial class SerializedDoorsModel { #region Public Properties [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int DoorTmpId { get; set; } public string DoorSerVal { get; set; } public bool Lock { get; set; } #endregion Public Properties } }