mirror of https://github.com/quasar/Quasar.git
16 lines
294 B
C#
16 lines
294 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|