13 lines
291 B
C#
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;
|
|
}
|
|
}
|
|
}
|