using Core.Abstractions.DomainObjects; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Core.DomainObjects.PageSections { public class PaymentSection : PageSectionBase { public FormItem NameOnCard { get; set; } public FormItem CardNumber { get; set; } public FormItem Expiration { get; set; } public FormItem Cvv { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }