mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
12 lines
270 B
C#
12 lines
270 B
C#
namespace ACE.Entity
|
|
{
|
|
public class PageData
|
|
{
|
|
public uint AuthorID;
|
|
public string AuthorName;
|
|
public string AuthorAccount;
|
|
public bool IgnoreAuthor;
|
|
public string PageText;
|
|
public uint PageIdx; // 0 based
|
|
}
|
|
}
|