mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
18 lines
486 B
C#
18 lines
486 B
C#
namespace FFXIVClassic_Lobby_Server
|
|
{
|
|
class Retainer
|
|
{
|
|
public readonly uint id;
|
|
public readonly uint characterId;
|
|
public readonly string name;
|
|
public readonly bool doRename;
|
|
|
|
public Retainer(uint characterId, uint retainerId, string name, bool doRename)
|
|
{
|
|
this.id = retainerId;
|
|
this.characterId = characterId;
|
|
this.name = name;
|
|
this.doRename = doRename;
|
|
}
|
|
}
|
|
} |