Files
ZelWiki/TightWiki.Library/Interfaces/IPage.cs
2025-01-22 23:31:03 +08:00

20 lines
647 B
C#

namespace TightWiki.Library.Interfaces
{
public interface IPage
{
public int Id { get; set; }
public int Revision { get; set; }
public int MostCurrentRevision { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Namespace { get; }
public string Title { get; }
public string Body { get; }
public string Navigation { get; }
public DateTime CreatedDate { get; set; }
public DateTime ModifiedDate { get; set; }
public bool IsHistoricalVersion { get; }
public bool Exists { get; }
}
}