Files
canvasManagement/Management/Models/CanvasModel/ProficiencyRatings/ProficiencyModel.cs
2023-01-04 17:22:36 -07:00

8 lines
177 B
C#

namespace CanvasModel.ProficiencyRatings;
public struct ProficiencyModel
{
[JsonPropertyName("ratings")]
public IEnumerable<ProficiencyRatingModel> Ratings { get; set; }
}