mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
reformatted models
This commit is contained in:
@@ -2,29 +2,28 @@
|
||||
|
||||
|
||||
|
||||
namespace Model.Users {
|
||||
|
||||
public class UserDisplayModel {
|
||||
|
||||
[JsonPropertyName("id")]
|
||||
public ulong? Id { get; set; }
|
||||
|
||||
[JsonPropertyName("short_name")]
|
||||
public string? ShortName { get; set; }
|
||||
|
||||
[JsonPropertyName("display_name")]
|
||||
public string? DisplayName { get; set; }
|
||||
|
||||
[JsonPropertyName("avatar_image_url")]
|
||||
public string AvatarImageUrl { get; set; }
|
||||
|
||||
[JsonPropertyName("html_url")]
|
||||
public string HtmlUrl { get; set; }
|
||||
namespace CanvasModel.Users;
|
||||
public class UserDisplayModel
|
||||
{
|
||||
|
||||
[JsonPropertyName("pronouns")]
|
||||
public string? Pronouns { get; set; }
|
||||
|
||||
[JsonPropertyName("anonymous_id")]
|
||||
public string AnonymousId { get; set; }
|
||||
}
|
||||
[JsonPropertyName("id")]
|
||||
public ulong? Id { get; set; }
|
||||
|
||||
[JsonPropertyName("short_name")]
|
||||
public string? ShortName { get; set; }
|
||||
|
||||
[JsonPropertyName("display_name")]
|
||||
public string? DisplayName { get; set; }
|
||||
|
||||
[JsonPropertyName("avatar_image_url")]
|
||||
public string AvatarImageUrl { get; set; }
|
||||
|
||||
[JsonPropertyName("html_url")]
|
||||
public string HtmlUrl { get; set; }
|
||||
|
||||
[JsonPropertyName("pronouns")]
|
||||
public string? Pronouns { get; set; }
|
||||
|
||||
[JsonPropertyName("anonymous_id")]
|
||||
public string AnonymousId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user