mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
27 lines
594 B
C#
27 lines
594 B
C#
using CanvasModel.Users;
|
|
|
|
namespace CanvasModel.Pages;
|
|
public class PageRevisionModel
|
|
{
|
|
|
|
[JsonPropertyName("revision_id")]
|
|
public ulong RevisionId { get; set; }
|
|
|
|
[JsonPropertyName("updated_at")]
|
|
public DateTime UpdatedAt { get; set; }
|
|
|
|
[JsonPropertyName("latest")]
|
|
public bool Latest { get; set; }
|
|
|
|
[JsonPropertyName("edited_by")]
|
|
public UserDisplayModel? EditedBy { get; set; }
|
|
|
|
[JsonPropertyName("url")]
|
|
public string? Url { get; set; }
|
|
|
|
[JsonPropertyName("title")]
|
|
public string? Title { get; set; }
|
|
|
|
[JsonPropertyName("body")]
|
|
public string? Body { get; set; }
|
|
} |