DreamineVMS 1.0.0.0
Windows PC의 RTSP·USB 카메라 영상을 HLS로 변환해 원격 CCTV Viewer에 전달하는 데스크톱 에이전트입니다.
로딩중...
검색중...
일치하는것 없음
VmsDashboardState.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class VmsDashboardState
12{
21 public static VmsDashboardState Empty => new();
22
31 public int TotalCameraCount { get; init; }
32
41 public int ConnectedCameraCount { get; init; }
42
51 public int RecordingCameraCount { get; init; }
52
61 public string LastEvent { get; init; } = "VMS application started.";
62
71 public DateTimeOffset? LastUpdated { get; init; } = DateTimeOffset.Now;
72}