DD.WellWorkover.Cloud/AsbCloudApp/Data/EventDto.cs

13 lines
320 B
C#
Raw Normal View History

2021-04-23 10:21:25 +05:00
namespace AsbCloudApp.Data
{
public class EventDto
{
public int Id { get; set; }
public string Message { get; set; }
public int IdCategory { get; set; }
public string Tag { get; set; }
public int EventType { get; set; }
public int IdSound { get; set; }
}
}