lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

24 lines
506 B
C#

namespace Shared.Models.AppConf
{
public class SyncConf
{
public bool enable { get; set; }
/// <summary>
/// master
/// slave
/// </summary>
public string type { get; set; }
public string initconf { get; set; }
public bool sync_full { get; set; } = true;
public string api_host { get; set; }
public string api_passwd { get; set; }
public Dictionary<string, string> override_conf { get; set; }
}
}