Files
lux/Lux.Data/DbModel/MovTypeModel.cs
T
2025-07-22 19:13:53 +02:00

30 lines
721 B
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 EgwCoreLib.Lux.Data.DbModel
{ // <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("RegMovType")]
public class MovTypeModel
{
/// <summary>
/// Cod movimento magazzino registrato
/// </summary>
[Key]
public string MovCod { get; set; } = "";
/// <summary>
/// Descrizione
/// </summary>
public string Description { get; set; } = "";
}
}