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

13 lines
331 B
C#
Raw Normal View History

2022-04-08 13:10:06 +05:00
namespace AsbCloudApp.Data.SAUB
2021-04-23 10:21:25 +05:00
{
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; }
}
}