Files
ZelWiki/TightWiki.Models/ViewModels/Page/PageRevertViewModel.cs
2025-01-22 23:31:03 +08:00

16 lines
484 B
C#

namespace TightWiki.Models.ViewModels.Page
{
public class PageRevertViewModel : ViewModelBase
{
public string? PageName { get; set; }
/// <summary>
/// The highest revision for the page.
/// </summary>
public int HighestRevision { get; set; }
/// <summary>
/// The number of revisions that are higher than the current page revision.
/// </summary>
public int HigherRevisionCount { get; set; }
}
}