添加项目文件。
This commit is contained in:
15
TightWiki.Models/ViewModels/Page/PageRevertViewModel.cs
Normal file
15
TightWiki.Models/ViewModels/Page/PageRevertViewModel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user