using Core.Abstractions.Models; using Core.DomainObjects.Documents; namespace WeatherForecast.Models.Requests { public class PutShopItemRequestModel : PostItemRequestModel { public override ShopItem ToDomainObject() { throw new NotImplementedException(); } } }