13 lines
418 B
C#
13 lines
418 B
C#
using ZelWiki.Models.DataModels;
|
|
|
|
namespace ZelWiki.Models.ViewModels.File
|
|
{
|
|
public class PageFileRevisionsViewModel : ViewModelBase
|
|
{
|
|
public string PageNavigation { get; set; } = string.Empty;
|
|
public string FileNavigation { get; set; } = string.Empty;
|
|
public List<PageFileAttachmentInfo> Revisions { get; set; } = new();
|
|
public int PaginationPageCount { get; set; }
|
|
}
|
|
}
|