mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 04:34:56 +00:00
@@ -346,8 +346,10 @@ namespace PepperDash.Essentials.Core
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Metadata describing the join
|
/// Metadata describing the join
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class JoinMetadata
|
public class JoinMetadata
|
||||||
{
|
{
|
||||||
|
private string _description;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Join number (based on join offset value)
|
/// Join number (based on join offset value)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -362,14 +364,17 @@ namespace PepperDash.Essentials.Core
|
|||||||
public uint JoinSpan { get; set; }
|
public uint JoinSpan { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A label for the join to better describe it's usage
|
/// A label for the join to better describe its usage
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Obsolete]
|
[Obsolete("Use Description instead")]
|
||||||
[JsonProperty("label")]
|
[JsonProperty("label")]
|
||||||
public string Label { get { return Description; } set { Description = value; } }
|
public string Label { get { return _description; } set { _description = value; } }
|
||||||
|
|
||||||
[JsonProperty("description")]
|
/// <summary>
|
||||||
public string Description { get; set; }
|
/// A description for the join to better describe its usage
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("description")]
|
||||||
|
public string Description { get { return _description; } set { _description = value; } }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Signal type(s)
|
/// Signal type(s)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user