reactredux/webapi/WeatherForecast/Models/Requests/PutShopItemRequestModel.cs

11 lines
293 B
C#

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