Quasar/Quasar.Common/Messages/DoPathDelete.cs

16 lines
296 B
C#

using ProtoBuf;
using Quasar.Common.Enums;
namespace Quasar.Common.Messages
{
[ProtoContract]
public class DoPathDelete : IMessage
{
[ProtoMember(1)]
public string Path { get; set; }
[ProtoMember(2)]
public FileType PathType { get; set; }
}
}