15 lines
299 B
C#
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
|
|
}
|
|
}
|