diff --git a/ApiDto/Requests/Configuration/DatabaseRequest.cs b/ApiDto/Requests/Configuration/DatabaseRequest.cs index 4308471..5da58e3 100644 --- a/ApiDto/Requests/Configuration/DatabaseRequest.cs +++ b/ApiDto/Requests/Configuration/DatabaseRequest.cs @@ -2,21 +2,43 @@ namespace Mirea.Api.Dto.Requests.Configuration; +/// +/// Represents a request to configure the database connection settings. +/// public class DatabaseRequest { + /// + /// Gets or sets the server address. + /// [Required] public required string Server { get; set; } + /// + /// Gets or sets the port number. + /// [Required] public int Port { get; set; } + /// + /// Gets or sets the database name. + /// [Required] public required string Database { get; set; } + /// + /// Gets or sets the username. + /// [Required] public required string User { get; set; } + /// + /// Gets or sets a value indicating whether SSL is enabled. + /// [Required] public bool Ssl { get; set; } + + /// + /// Gets or sets the password. + /// public string? Password { get; set; } } \ No newline at end of file