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 vSelOdlModel { [Key] public int value { get; set; } = 0; public string label { get; set; } = ""; public DateTime? conditio { get; set; } = DateTime.Now; } }