reactredux/webapi/WeatherForecast/Models/PageSections/CallToActionSectionModel.cs

10 lines
258 B
C#

using WeatherForecast.Models.Abstractions;
namespace WeatherForecast.Models.PageSections {
public class CallToActionSectionModel : PageSectionModel {
public string PrivacyDisclaimer { get; set; }
public FormItemModel Email { get; set; }
}
}