Files
Samuele Locatelli bbd1b61c37 Rename codice ext
2025-10-02 16:43:54 +02:00

30 lines
706 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Egw.Window.Data
{
public class Wood
{
/// <summary>
/// ID del record
/// </summary>
public int WoodID { get; set; }
/// <summary>
/// Codice esterno risorsa (potrebbe coincidere)
/// </summary>
public string Code { get; set; } = string.Empty;
/// <summary>
/// Descrizione
/// </summary>
public string Description { get; set; } = string.Empty;
/// <summary>
/// Tipologia del materiale (per poterlo gestire nelle lavorazioni)
/// </summary>
public int Type { get; set; } = 0;
}
}