20 lines
412 B
C#
20 lines
412 B
C#
using MessagePack;
|
|
using Pulsar.Common.Enums;
|
|
using Pulsar.Common.Messages.Other;
|
|
|
|
namespace Pulsar.Common.Messages.Administration.FileManager
|
|
{
|
|
[MessagePackObject]
|
|
public class DoPathRename : IMessage
|
|
{
|
|
[Key(1)]
|
|
public string Path { get; set; }
|
|
|
|
[Key(2)]
|
|
public string NewPath { get; set; }
|
|
|
|
[Key(3)]
|
|
public FileType PathType { get; set; }
|
|
}
|
|
}
|