Files
mapo-core/MP.Data/DbModels/AnagraficaFlussiModel.cs
T
Samuele E. Locatelli 50d65eebaa MP.DATA, riorganizzazioni varie:
- renaming classi gestione DbModels in
- spostamento anagrafica flussi da auth a generale
2025-03-08 10:40:09 +01:00

32 lines
782 B
C#

using System;
using System.Collections.Generic;
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
}
}