using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DatabaseModels { public partial class RegCheckModel { #region Public Properties [Key] public string IdxMacchina { get; set; } #endregion Public Properties } }