Files
lux/Lux.Data/DbModel/MovTypeModel.cs
T
2025-07-07 19:20:18 +02:00

30 lines
710 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 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; } = "";
}
}