Files
mapo-core/MP.Core/DTO/ULogJsonPayloadDto.cs
Samuele Locatelli 53bf6ba5b3 Aggiunta metodi ulog
2026-04-14 16:10:50 +02:00

15 lines
299 B
C#

namespace MP.Core.DTO
{
/// <summary>
/// Array valori tipo UserLogData inviati come JSon
/// </summary>
public class ULogJsonPayloadDto
{
#region Public Properties
public List<ULogDataDto> fluxData { get; set; }
#endregion Public Properties
}
}