17 lines
409 B
C#
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; } = "";
|
|
}
|
|
}
|