commit pre-purge

This commit is contained in:
2023-01-04 20:26:15 -07:00
parent c28230691e
commit b9824a7327
16 changed files with 229 additions and 75 deletions

View File

@@ -1,9 +1,7 @@
using System.Collections.Generic;
namespace CanvasModel.EnrollmentTerms;
public struct RedundantEnrollmentTermsResponse
{
[JsonPropertyName("enrollment_terms")]
public IEnumerable<EnrollmentTermModel> EnrollmentTerms { get; set; }
}
public record RedundantEnrollmentTermsResponse
(
[property: JsonPropertyName("enrollment_terms")]
IEnumerable<EnrollmentTermModel> EnrollmentTerms
);