Files
2022-06-10 11:47:55 +02:00

29 lines
726 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.MONO.Data.DbModels
{
/// <summary>
/// Tabella valore team utente
/// </summary>
[Table("UserTeam")]
public class PMUTModel
{
/// <summary>
/// Codice Univoco
/// </summary>
[Key, DatabaseGenerated(DatabaseGeneratedOption.None), MaxLength(250)]
public string PMUTCode { get; set; } = "";
/// <summary>
/// Descrizione
/// </summary>
[MaxLength(500)]
public string Description { get; set; } = "";
}
}