2023-01-03 22:59:47 +03:30

9 lines
183 B
C#

namespace BuildingBlocks.Logging;
public class FileOptions
{
public bool Enabled { get; set; }
public string Path { get; set; }
public string Interval { get; set; }
}