using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace framework_library { [Serializable] public class oSubscription { public oSubscription() { } public string reference { get; set; } public string interval { get; set; } public int trialDays { get; set; } public string firstname { get; set; } public string lastname { get; set; } public string email { get; set; } } }