40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagMan.Data.Tenant.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
/// <summary>
|
|
/// Tabella dei Piano Richieste associate a Proj
|
|
/// </summary>
|
|
[Table("RequestPlan")]
|
|
public class RequestPlanModel
|
|
{
|
|
[Key, Column("RequestId"), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int RequestId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Progetto di riferimento
|
|
/// </summary>
|
|
public int ProjDbId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Data richiesta
|
|
/// </summary>
|
|
public DateTime DtRequest{ get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Record attivo (se false == NON è il piano scelto)
|
|
/// </summary>
|
|
public bool IsActive { get; set; } = true;
|
|
}
|
|
}
|