mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
8 lines
177 B
C#
8 lines
177 B
C#
|
|
namespace CanvasModel.ProficiencyRatings;
|
|
public struct ProficiencyModel
|
|
{
|
|
[JsonPropertyName("ratings")]
|
|
public IEnumerable<ProficiencyRatingModel> Ratings { get; set; }
|
|
}
|