scafolded project

This commit is contained in:
2023-01-03 18:36:40 -07:00
parent b2e79697b8
commit 55cd8162ed
161 changed files with 5987 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
namespace Model.Accounts {
public class AccountModel {
[JsonPropertyName("id")]
public ulong Id { get; set; }
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("uuid")]
public string Uuid { get; set; }
[JsonPropertyName("parent_account_id")]
public ulong? ParentAccountId { get; set; }
[JsonPropertyName("root_account_id")]
public ulong? RootAccountId { get; set; }
[JsonPropertyName("default_user_storage_quota_mb")]
public ulong? DefaultUserStorageQuotaMb { get; set; }
[JsonPropertyName("default_group_storage_quota_mb")]
public ulong? DefaultGroupStorageQuotaMb { get; set; }
[JsonPropertyName("default_time_zone")]
public string DefaultTimeZone { get; set; }
[JsonPropertyName("sis_account_id")]
public string? SisAccountId { get; set; }
[JsonPropertyName("integrationI-d")]
public string? IntegrationId { get; set; }
[JsonPropertyName("sis_import_id")]
public string? SisImportId { get; set; }
[JsonPropertyName("lti_guid")]
public string LtiGuid { get; set; }
[JsonPropertyName("workflow_state")]
public string WorkflowState { get; set; }
}
}