enotaryo-landing/EnotaryoPH/EnotaryoPH.Web/Common/Jobs/Models/RecordingFileStatusUpdatedModel.cs
2025-04-02 22:08:17 +01:00

14 lines
469 B
C#

namespace EnotaryoPH.Web.Common.Jobs.Models
{
public class RecordingFileStatusUpdatedModel
{
public Data Data { get; set; }
public string DataVersion { get; set; }
public DateTime EventTime { get; set; }
public string EventType { get; set; }
public string Id { get; set; }
public string MetadataVersion { get; set; }
public string Subject { get; set; }
public string Topic { get; set; }
}
}