Files
Mapo-IOB-WIN/EgwProxy.Icoel/GrowerInfo.cs
T
2022-05-20 12:07:25 +02:00

29 lines
744 B
C#

using System.Collections.Generic;
namespace EgwProxy.Icoel
{
/// <summary>
/// Classe rappresentazione dati del Grower
/// </summary>
public class GrowerInfo
{
#region Public Properties
/// <summary>
/// Riga commento 01
/// </summary>
public List<string> Comments { get; set; } = new List<string>() { "Commento 01", "Commento 02", "Commento 01" };
/// <summary>
/// Codice univoco fornitore
/// </summary>
public string GrowerCode { get; set; } = "02";
/// <summary>
/// Denominazione del fornitore
/// </summary>
public string GrowerName { get; set; } = "Egalware";
#endregion Public Properties
}
}