Files
SecMPS/gateway/src/IntegrationGateway.Core/Models/StandardRecording.cs

13 lines
357 B
C#

namespace IntegrationGateway.Core.Models;
public class StandardRecording
{
public int Id { get; set; }
public string? ChannelId { get; set; }
public DateTime StartedAt { get; set; }
public DateTime EndedAt { get; set; }
public double Duration { get; set; }
public string? FilePath { get; set; }
public long Size { get; set; }
}