1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-22 04:37:47 +00:00
project-meteor-server/FFXIVClassic World Server/DataObjects/Group/RetainerGroupMember.cs

31 lines
849 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FFXIVClassic_World_Server.DataObjects.Group
{
class RetainerGroupMember
{
public uint id;
public string name;
public uint classActorId;
public byte cdIDOffset;
public ushort placeName;
public byte conditions;
public byte level;
public RetainerGroupMember(uint id, string name, uint classActorId, byte cdIDOffset, ushort placeName, byte conditions, byte level)
{
this.id = id;
this.name = name;
this.classActorId = classActorId;
this.cdIDOffset = cdIDOffset;
this.placeName = placeName;
this.conditions = conditions;
this.level = level;
}
}
}