Automated teller machine emulation.
using System;
namespace Impexpdata.Core
{
public class CustomerInfo
{
public int Id { get; set; }
public string Name { get; set; }
public string Notes { get; set; }
public int? CodeId { get; set; }
public string CodeName { get; set; }
public DateTime? DateImported { get; set; }
public DateTime? DateExported { get; set; }
}
}