using Core.DomainObjects.PageSections; using WeatherForecast.Models.Abstractions; namespace WeatherForecast.Models.PageSections { public class CommentsSectionModel : PageSectionModelBase { public string LeaveComment { get; set; } public CommentsSectionModel(CommentsSection commentsSection) : base (commentsSection) { LeaveComment = commentsSection.LeaveComment; } } }