12 lines
382 B
C#
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; }
|
|
}
|
|
} |