11 lines
308 B
C#
11 lines
308 B
C#
namespace Salmon.Service;
|
|
|
|
public class Configuration
|
|
{
|
|
public Uri? Url { get; set; }
|
|
public int? Period { get; set; }
|
|
public bool? MonitorHardware { get; set; } = true;
|
|
public bool? MonitorLocalSoftware { get; set; } = true;
|
|
|
|
public List<Watchers.Base> Watch { get; set; } = new ();
|
|
} |