2022-09-10 21:31:15 +04:30

8 lines
181 B
C#

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