mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
11 lines
234 B
C#
11 lines
234 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
namespace Model.ProficiencyRatings {
|
|
|
|
public struct ProficiencyModel {
|
|
[JsonPropertyName("ratings")]
|
|
public IEnumerable<ProficiencyRatingModel> Ratings { get; set; }
|
|
}
|
|
}
|