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