scafolded project

This commit is contained in:
2023-01-03 18:36:40 -07:00
parent b2e79697b8
commit 55cd8162ed
161 changed files with 5987 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using Model.Users;
namespace Model.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; }
}
}