using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public class oLicence { private string _customerName = string.Empty; public string customerName { get { return this._customerName; } set { this._customerName = value; } } private string _customerCode = string.Empty; public string customerCode { get { return this._customerCode; } set { this._customerCode = value; } } private string _licenceKey = String.Empty; public string licenceKey { get { return this._licenceKey; } set { this._licenceKey = value; } } private DateTime _licenceDate = DateTime.MinValue; public DateTime licenceDate { get { return this._licenceDate; } set { this._licenceDate = value; } } }