reactredux/webapi/WeatherForecast/Models/FormItemModel.cs

14 lines
311 B
C#

using Core.DomainObjects;
namespace WeatherForecast.Models {
public class FormItemModel {
public string? Title { get; set; }
public string? PlaceHolder { get; set; }
public FormItemModel(FormItem formItem) {
Title = formItem.Title;
PlaceHolder = formItem.PlaceHolder;
}
}
}