Quick fix

This commit is contained in:
Александр Лазаренко 2025-06-03 01:58:06 +03:00
parent ec06ee84de
commit 9cad035018
Signed by: Kerblif
GPG Key ID: 5AFAD6640F4670C3

View File

@ -359,9 +359,23 @@ type CG struct {
AT uint // Answer automatically when exceed time
}
type RSI struct {
E int64 // End time in seconds
S int64 // Start time in seconds
}
type RCP struct {
RSI [][]RSI // Recording type parameters (array for cameras number, 7 for week days)
}
type RP struct {
RCP []RCP // Single channel recording period parameter list
}
type Setting struct {
KEYS KEYS `json:"KEYS,omitempty"`
RIP RIP `json:"RIP,omitempty"`
RP RP `json:"RP,omitempty"`
TIMEP TIMEP `json:"TIMEP,omitempty"`
ATP ATP `json:"ATP,omitempty"`
SSP SSP `json:"SSP,omitempty"`