mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 19:02:15 +08:00
9 lines
183 B
C#
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; }
|
|
}
|