31 lines
649 B
C#
31 lines
649 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MapoSDK
|
|
{
|
|
/// <summary>
|
|
/// Tracciato FluxLog in formato JSON valido
|
|
/// </summary>
|
|
public class flogData : evData
|
|
{
|
|
#region Public Properties
|
|
|
|
/// <summary>
|
|
/// nome del flusso
|
|
/// </summary>
|
|
public string flux { get; set; } = "ND";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
|
|
/// <summary>
|
|
/// Array valori tipo flogData inviati come JSon
|
|
/// </summary>
|
|
public class flogJsonPayload
|
|
{
|
|
#region Public Properties
|
|
|
|
public List<flogData> fluxData { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |