reactredux/webapi/WeatherForecast/Models/CommentModel.cs

24 lines
395 B
C#

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; }
}
}