mirror of
https://github.com/AlexMacocian/ServerManagementUtils.git
synced 2026-07-15 15:19:58 +00:00
9 lines
165 B
C#
9 lines
165 B
C#
namespace Robin.Options;
|
|
|
|
public sealed class MonitorOptions
|
|
{
|
|
public const string SectionName = "Monitor";
|
|
|
|
public List<string> Paths { get; set; } = [];
|
|
}
|