ChatTwo/ChatTwo/GameFunctions/Types/TellHistoryInfo.cs
2022-01-30 23:45:07 -05:00

14 lines
360 B
C#
Executable File

namespace ChatTwo.GameFunctions.Types;
internal sealed class TellHistoryInfo {
internal string Name { get; }
internal uint World { get; }
internal ulong ContentId { get; }
internal TellHistoryInfo(string name, uint world, ulong contentId) {
this.Name = name;
this.World = world;
this.ContentId = contentId;
}
}