laatzen/ServiceFwUpdate/Common/FwUpdateDb/CordonelCustomerInfosDb.cs
2021-10-01 11:11:04 +02:00

31 lines
755 B
C#

using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateDb
{
/// <summary>
/// Cordonel customers
/// </summary>
[Serializable]
public class CordonelCustomerInfosDb
{
/// <summary>
/// Used to keep the selection information on e.g. data tables stuck at the customer.
/// </summary>
public Boolean IsSelected;
/// <summary>
/// Customer number
/// </summary>
public Int64 CustomerNumber { get; set; }
/// <summary>
/// Customer name
/// </summary>
public String CustomerName { get; set; }
/// <summary>
/// Customer location
/// </summary>
public String CustomerLocation { get; set; }
}
}