Files
mapo-core/MP.Core/DTO/FLogJsonPayloadDto.cs
2026-04-14 09:00:41 +02:00

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
}
}