Files
mapo-mono/MP.MONO.Data/DbModels/UserTeamModel.cs
T
2022-06-10 11:17:33 +02:00

29 lines
731 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 UserTeamModel
{
/// <summary>
/// Codice del team
/// </summary>
[Key, DatabaseGenerated(DatabaseGeneratedOption.None), MaxLength(250)]
public string TeamCode { get; set; } = "";
/// <summary>
/// Descrizione
/// </summary>
[MaxLength(500)]
public string Description { get; set; } = "";
}
}