2018-08-18 16:55:25 +00:00
|
|
|
|
using ProtoBuf;
|
|
|
|
|
|
2018-08-25 16:12:44 +00:00
|
|
|
|
namespace Quasar.Common.Messages
|
2018-08-18 16:55:25 +00:00
|
|
|
|
{
|
|
|
|
|
[ProtoContract]
|
2020-05-25 20:38:41 +00:00
|
|
|
|
public class FileTransferComplete : IMessage
|
2018-08-18 16:55:25 +00:00
|
|
|
|
{
|
|
|
|
|
[ProtoMember(1)]
|
2020-05-25 20:38:41 +00:00
|
|
|
|
public int Id { get; set; }
|
2018-08-18 16:55:25 +00:00
|
|
|
|
|
|
|
|
|
[ProtoMember(2)]
|
2020-05-25 20:38:41 +00:00
|
|
|
|
public string FilePath { get; set; }
|
2018-08-18 16:55:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|