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