using Core.Abstractions.Models; using Core.DomainObjects.Documents; namespace WeatherForecast.Models.Requests { public class PostBlogItemRequestModel : RequestModelBase { public override BlogItem ToDomainObject() { throw new NotImplementedException(); } } }