reactredux/webapi/Core/DomainObjects/PageSections/SummarySection.cs

22 lines
491 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 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();
}
}
}