11 lines
283 B
C#
11 lines
283 B
C#
using Core.Abstractions.Models;
|
|
using Core.DomainObjects;
|
|
|
|
namespace WeatherForecast.Models.Requests {
|
|
public class PutCategoryItemRequestModel : RequestModelBase<Category> {
|
|
public override Category ToDomainObject() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|