1
0
mirror of synced 2024-06-29 07:17:39 +00:00
Tapeti/Tapeti.Cmd/Verbs/BaseMessageSerializerOptions.cs
2021-09-04 11:33:59 +02:00

18 lines
523 B
C#

using CommandLine;
namespace Tapeti.Cmd.Verbs
{
public enum SerializationMethod
{
SingleFileJSON,
EasyNetQHosepipe
}
public class BaseMessageSerializerOptions : BaseConnectionOptions
{
[Option('s', "serialization", HelpText = "The method used to serialize the message for import or export. Valid options: SingleFileJSON, EasyNetQHosepipe.", Default = SerializationMethod.SingleFileJSON)]
public SerializationMethod SerializationMethod { get; set; }
}
}