#![allow(missing_docs)]
#![allow(unused)]
#![allow(non_snake_case)]
use serde::{Deserialize, Serialize};
use super::caching::RedisCidrAllowList;
use colored::Colorize;
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct RedisConf {
pub name: Option<String>,
pub plan: String,
pub ownerId: String,
pub ipAllowList: Option<Vec<RedisCidrAllowList>>,
}