25 lines
634 B
C#
25 lines
634 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Mirea.Api.Dto.Requests.Configuration;
|
|
|
|
/// <summary>
|
|
/// Represents a request to configure logging settings.
|
|
/// </summary>
|
|
public class LoggingRequest
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether logging to file is enabled.
|
|
/// </summary>
|
|
[Required]
|
|
public bool EnableLogToFile { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the log file name.
|
|
/// </summary>
|
|
public string? LogFileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the log file path.
|
|
/// </summary>
|
|
public string? LogFilePath { get; set; }
|
|
} |