12 lines
212 B
C#
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
|
|
}
|
|
}
|