Quasar/Quasar.Common/Packets/DoPathDelete.cs

16 lines
294 B
C#
Raw Normal View History

2018-08-18 16:55:25 +00:00
using ProtoBuf;
using Quasar.Common.Enums;
namespace Quasar.Common.Packets
{
[ProtoContract]
public class DoPathDelete : IPacket
{
[ProtoMember(1)]
public string Path { get; set; }
[ProtoMember(2)]
public PathType PathType { get; set; }
}
}