reactredux/webapi/WeatherForecast/Models/ReviewerModel.cs

9 lines
215 B
C#

using WeatherForecast.Models.Abstractions;
namespace WeatherForecast.Models {
public class ReviewerModel : PersonModel {
public string FullName { get; set; }
public string Position { get; set; }
}
}