using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public class oLicenceResult { private bool _successful = false; public bool successful { get { return this._successful; } set { this._successful = value; } } private List _failedReasons = new List(); public List failedReasons { get { return this._failedReasons; } set { this._failedReasons = value; } } }