Files
mapo-core/MP.Core/DTO/ULogJsonPayloadDto.cs
T

15 lines
308 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; } = new();
#endregion Public Properties
}
}