using System; using System.ComponentModel.DataAnnotations; namespace framework_library { [Serializable] public class oCreditCard { [Required] public string number { get; set; } public string cardHolder { get; set; } public int expiryYear { get; set; } public int expiryMonth { get; set; } public string cvv { get; set; } public string token { get; set; } } }