17 lines
319 B
C#
17 lines
319 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
public partial class AnagraficaFlussi
|
|
{
|
|
#region Public Properties
|
|
|
|
public string CodFlux { get; set; }
|
|
public string DescrFlux { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |