mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
reformatted models
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user