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

13 lines
326 B
C#
Raw Normal View History

2021-04-23 10:21:25 +05:00
namespace AsbCloudApp.Data
{
2021-09-10 11:28:57 +05:00
public class EventDto : IId
2021-04-23 10:21:25 +05:00
{
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; }
}
}