Files
ServerManagementUtils/robin/Options/MonitorOptions.cs
T
Alexandru-Victor Macocian e40e42ba40 Setup reading and persistence
2025-11-28 17:07:37 +01:00

9 lines
165 B
C#

namespace Robin.Options;
public sealed class MonitorOptions
{
public const string SectionName = "Monitor";
public List<string> Paths { get; set; } = [];
}