mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
All classes and objects added are in new namespaces. This add has 0 interraction on existing ACE code. This sets the groundwork for Step 2. Moving World DB caching to the new models
27 lines
714 B
C#
27 lines
714 B
C#
using System;
|
|
|
|
namespace ACE.Entity.Models
|
|
{
|
|
public class PropertiesBookPageData
|
|
{
|
|
public uint AuthorId { get; set; }
|
|
public string AuthorName { get; set; }
|
|
public string AuthorAccount { get; set; }
|
|
public bool IgnoreAuthor { get; set; }
|
|
public string PageText { get; set; }
|
|
|
|
public PropertiesBookPageData Clone()
|
|
{
|
|
var result = new PropertiesBookPageData
|
|
{
|
|
AuthorId = AuthorId,
|
|
AuthorName = AuthorName,
|
|
AuthorAccount = AuthorAccount,
|
|
IgnoreAuthor = IgnoreAuthor,
|
|
PageText = PageText,
|
|
};
|
|
|
|
return result;
|
|
}
|
|
}
|
|
}
|