30 lines
760 B
C#
30 lines
760 B
C#
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
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[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
|
|
}
|
|
}
|