29 lines
733 B
C#
29 lines
733 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("TaskTopic")]
|
|
public class PMTaskTopicModel
|
|
{
|
|
/// <summary>
|
|
/// Codice Univoco
|
|
/// </summary>
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.None), MaxLength(250)]
|
|
public string PMTCode { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Descrizione
|
|
/// </summary>
|
|
[MaxLength(500)]
|
|
public string Description { get; set; } = "";
|
|
}
|
|
}
|