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

11 lines
290 B
C#

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