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
{ //
// This is here so CodeMaid doesn't reorganize this document
//
[Table("RegMovType")]
public class MovTypeModel
{
///
/// Cod movimento magazzino registrato
///
[Key]
public string MovCod { get; set; } = "";
///
/// Descrizione
///
public string Description { get; set; } = "";
}
}