2025-04-02 22:08:17 +01:00

12 lines
382 B
C#

namespace EnotaryoPH.Web.Common.Jobs.Models
{
public class RecordingChunk
{
public string ContentLocation { get; set; }
public string DeleteLocation { get; set; }
public string DocumentId { get; set; }
public string EndReason { get; set; }
public int Index { get; set; }
public string MetadataLocation { get; set; }
}
}