22 lines
598 B
C#
22 lines
598 B
C#
using Core.DomainObjects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core.Abstractions.DomainObjects {
|
|
public abstract class AddressSectionBase<T> : PageSectionBase<T> {
|
|
public FormItem FirstName { get; set; }
|
|
public FormItem LastName { get; set; }
|
|
|
|
public FormItem Address { get; set; }
|
|
public FormItem Address2 { get; set; }
|
|
public FormItem Country { get; set; }
|
|
public FormItem State { get; set; }
|
|
|
|
public FormItem City { get; set; }
|
|
public FormItem Zip { get; set; }
|
|
}
|
|
}
|