reactredux/webapi/WeatherForecast/Models/CommentModel.cs

8 lines
213 B
C#

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