14 lines
431 B
C#
14 lines
431 B
C#
using TightWiki.Models.DataModels;
|
|
|
|
namespace TightWiki.Models.ViewModels.Page
|
|
{
|
|
public class DeletedPageViewModel : ViewModelBase
|
|
{
|
|
public int PageId { get; set; }
|
|
public string Body { get; set; } = string.Empty;
|
|
public string DeletedByUserName { get; set; } = string.Empty;
|
|
public DateTime DeletedDate { get; set; }
|
|
public List<PageComment> Comments { get; set; } = new();
|
|
}
|
|
}
|