11 lines
312 B
C#
11 lines
312 B
C#
namespace TightWiki.Models.ViewModels.Page
|
|
{
|
|
public class PageDeleteViewModel : ViewModelBase
|
|
{
|
|
public int CountOfAttachments { get; set; }
|
|
public int MostCurrentRevision { get; set; }
|
|
public string? PageName { get; set; }
|
|
public int PageRevision { get; set; }
|
|
}
|
|
}
|