Files
mapo-core/MP.Core/DTO/EvJsonPayloadDto.cs
2026-04-15 19:19:06 +02:00

12 lines
212 B
C#

namespace MP.Core.DTO
{
public class EvJsonPayloadDto
{
#region Public Properties
public List<EvDataDto> eventList { get; set; } = new();
#endregion Public Properties
}
}