21 lines
539 B
C#
21 lines
539 B
C#
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<PaymentSection> {
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|