30 lines
734 B
C#
30 lines
734 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DbModels
|
|
{
|
|
[Table("AnagraficaFlussi")]
|
|
public partial class AnagraficaFlussiModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, MaxLength(50)]
|
|
public string CodFlux { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string DescrFlux { get; set; }
|
|
|
|
[MaxLength(50)]
|
|
public string FluxType { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Navigazione oggetto AnagFluxType
|
|
/// </summary>
|
|
[ForeignKey("FluxType")]
|
|
public virtual AnagFluxTypeModel FluxTypeNav { get; set; } = null!;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |