using Mirea.Api.Dto.Common;
namespace Mirea.Api.Dto.Responses.Configuration;
///
/// Represents a response containing cache configuration details.
///
public class CacheResponse
{
///
/// Gets or sets the type of cache database.
///
public CacheType Type { get; set; }
///
/// Gets or sets the server address.
///
public string? Server { get; set; }
///
/// Gets or sets the port number.
///
public int Port { get; set; }
///
/// Gets or sets the password.
///
public string? Password { get; set; }
}