Files
mapo-core/MP.Data/DatabaseModels/vSelOdlModel.cs
T
Samuele Locatelli 58130dc704 Update gestione ODL
2023-11-03 15:37:29 +01:00

20 lines
526 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
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;
}
}