reactredux/webapi/WeatherForecast/Models/CommentModel.cs

28 lines
426 B
C#

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