15 lines
305 B
C#
15 lines
305 B
C#
namespace MP.Core.DTO
|
|
{
|
|
/// <summary>
|
|
/// Array valori tipo flogData inviati come JSon
|
|
/// </summary>
|
|
public class FLogJsonPayloadDto
|
|
{
|
|
#region Public Properties
|
|
|
|
public List<FLogDataDto> fluxData { get; set; } = new();
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|