2025-03-15 16:54:20 +03:30

9 lines
180 B
C#

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