using System; namespace framework_library { [Serializable] public class oTransaction { public string reference { get; set;} public string description { get; set;} public string currency { get; set;} = "ZAR"; public double amount { get; set;} } }