30 lines
706 B
C#
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;
|
|
}
|
|
}
|