mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
24 lines
529 B
C#
24 lines
529 B
C#
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
} |