Files
gpw_next/GPW.CORE.Data/DbModels/RegMalattieModel.cs
T
2023-01-02 16:43:23 +01:00

23 lines
750 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("RegistroMalattie")]
public partial class RegMalattieModel
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int IdxRegMal { get; set; }
public int idxDipendente { get; set; }
public DateTime dtInizio { get; set; } = DateTime.Today;
public int numGG { get; set; } = 1;
public string codCert { get; set; } = "";
public bool conf { get; set; } = false;
}
}