Files
canvasManagement/Management/Models/CanvasModel/ProficiencyRatings/ProficiencyModel.cs
2023-01-03 18:36:40 -07:00

11 lines
234 B
C#

using System.Collections.Generic;
namespace Model.ProficiencyRatings {
public struct ProficiencyModel {
[JsonPropertyName("ratings")]
public IEnumerable<ProficiencyRatingModel> Ratings { get; set; }
}
}