using System.ComponentModel.DataAnnotations;
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; }
}