using Core.DomainObjects;
namespace WeatherForecast.Models {
  /// 
  /// 
  /// 
  public class CommentModel {
    /// 
    /// 
    /// 
    public AuthorModel? Author { get; set; }
    /// 
    /// 
    /// 
    public string? Comment { get; set; }
    /// 
    /// 
    /// 
    public List? Responses { get; set; }
  }
}