Files
gpw_next/GPW.CORE.Data/DbModels/DipendendiAndAnomalieModel.cs

17 lines
409 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
public partial class DipendendiAndAnomalie
{
[Key]
public int IdxDipendente { get; set; }
public string CognomeNome { get; set; } = "";
public string email { get; set; } = "";
}
}