reactredux/webapi/WeatherForecast/Models/AuthorModel.cs

13 lines
291 B
C#

using Core.DomainObjects;
using WeatherForecast.Models.Abstractions;
namespace WeatherForecast.Models {
public class AuthorModel : PersonModelBase<Author> {
public string NickName { get; set; }
public AuthorModel(Author author) {
NickName = author.NickName;
}
}
}