Added BatchId property to InvokeReferences for batch identification. Refactored Reference3-5 property declarations for clarity and consistency by removing unnecessary line breaks.
50 lines
1.0 KiB
C#
50 lines
1.0 KiB
C#
namespace ReC.Client.Api
|
|
{
|
|
/// <summary>
|
|
/// Optional reference values that are passed through to all result records when invoking a profile.
|
|
/// </summary>
|
|
public class InvokeReferences
|
|
{
|
|
/// <summary>Batch identifier.</summary>
|
|
public string
|
|
#if NET
|
|
?
|
|
#endif
|
|
BatchId { get; set; }
|
|
|
|
/// <summary>Reference value 1.</summary>
|
|
public string
|
|
#if NET
|
|
?
|
|
#endif
|
|
Reference1 { get; set; }
|
|
|
|
/// <summary>Reference value 2.</summary>
|
|
public string
|
|
#if NET
|
|
?
|
|
#endif
|
|
Reference2 { get; set; }
|
|
|
|
/// <summary>Reference value 3.</summary>
|
|
public string
|
|
#if NET
|
|
?
|
|
#endif
|
|
Reference3 { get; set; }
|
|
|
|
/// <summary>Reference value 4.</summary>
|
|
public string
|
|
#if NET
|
|
?
|
|
#endif
|
|
Reference4 { get; set; }
|
|
|
|
/// <summary>Reference value 5.</summary>
|
|
public string
|
|
#if NET
|
|
?
|
|
#endif
|
|
Reference5 { get; set; }
|
|
}
|
|
} |