You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
519 B
19 lines
519 B
using System.Runtime.Serialization; |
|
|
|
namespace DotXxlJob.Core.Model |
|
{ |
|
[DataContract(Name = Constants.RegistryParamJavaFullName)] |
|
public class RegistryParam |
|
{ |
|
[DataMember(Name = "registryGroup", Order = 1)] |
|
public string RegistryGroup { get; set; } |
|
|
|
[DataMember(Name = "registryKey", Order = 2)] |
|
public string RegistryKey { get; set; } |
|
|
|
|
|
[DataMember(Name = "registryValue", Order = 3)] |
|
public string RegistryValue { get; set; } |
|
|
|
} |
|
} |