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