using MessagePack;
namespace Pulsar.Common.Messages.Other
{
///
/// Client request asking the server to deliver one or more deferred assemblies.
///
[MessagePackObject]
public class RequestDeferredAssemblies : IMessage
{
///
/// Gets or sets the list of assembly simple names the client is missing.
///
[Key(1)]
public string[] Assemblies { get; set; }
///
/// Optional version information so the server can pick an appropriate bundle.
///
[Key(2)]
public string ClientVersion { get; set; }
}
}