Files

22 lines
552 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.Data.DbModels
{
[Table("AnagFLTrans")]
public class AnagFLTransModel
{
[Key, MaxLength(50)]
public string CodFluxIn { get; set; } = "";
[MaxLength(50)]
public string CodFluxOut { get; set; } = "";
[MaxLength(50)]
public string UM { get; set; } = "";
}
}