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