14 lines
374 B
C#
14 lines
374 B
C#
using Core.Abstractions.Models;
|
|
using Core.DomainObjects;
|
|
using WeatherForecast.Models.L10n;
|
|
|
|
namespace WeatherForecast.Models.Requests {
|
|
public class PostCategoryItemRequestModel : RequestModelBase<Category> {
|
|
|
|
public List<CategoryL10nModel> L10n { get; set; }
|
|
public override Category ToDomainObject() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|