12 lines
380 B
C#
12 lines
380 B
C#
namespace TightWiki.Models.ViewModels.Page
|
|
{
|
|
public class DeletedPageRevisionViewModel : ViewModelBase
|
|
{
|
|
public int PageId { get; set; }
|
|
public int Revision { get; set; }
|
|
public string Body { get; set; } = string.Empty;
|
|
public string DeletedByUserName { get; set; } = string.Empty;
|
|
public DateTime DeletedDate { get; set; }
|
|
}
|
|
}
|