reformatted models

This commit is contained in:
2023-01-04 17:22:36 -07:00
parent c8175971b7
commit c28230691e
122 changed files with 3812 additions and 4005 deletions

View File

@@ -1,24 +1,24 @@
namespace Model.Users {
public class PageViewLinksModel {
[JsonPropertyName("user")]
public ulong User { get; set; }
[JsonPropertyName("context")]
public ulong? Context { get; set; }
[JsonPropertyName("asset")]
public ulong? Asset { get; set; }
[JsonPropertyName("real_user")]
public ulong? RealUser { get; set; }
[JsonPropertyName("account")]
public ulong? Account { get; set; }
namespace CanvasModel.Users;
public class PageViewLinksModel
{
[JsonPropertyName("user")]
public ulong User { get; set; }
[JsonPropertyName("context")]
public ulong? Context { get; set; }
[JsonPropertyName("asset")]
public ulong? Asset { get; set; }
[JsonPropertyName("real_user")]
public ulong? RealUser { get; set; }
[JsonPropertyName("account")]
public ulong? Account { get; set; }
}
}