29 lines
744 B
C#
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
|
|
}
|
|
} |