reactredux/src/DomainObjects/PageSections/SummarySection.cs

17 lines
347 B
C#

using DomainObjects.Abstractions;
namespace DomainObjects.PageSections;
public class SummarySection : PageSectionBase<SummarySection> {
public string Total { get; set; }
public FormItem PromoCode { get; set; }
public FormItem Submit { get; set; }
public override int GetHashCode() {
throw new NotImplementedException();
}
}