mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 19:02:15 +08:00
10 lines
213 B
C#
10 lines
213 B
C#
namespace BuildingBlocks.Logging
|
|
{
|
|
public class LogOptions
|
|
{
|
|
public string Level { get; set; }
|
|
public FileOptions File { get; set; }
|
|
public string LogTemplate { get; set; }
|
|
}
|
|
}
|