/*
* Lethean VPN
*
* Distributed Virtual Private Marketplace
*
* The version of the OpenAPI document: 1.2.1
* Contact: contact@lethean.io
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct RctSigPrunable {
#[serde(rename = "MGs")]
pub mgs: Vec<crate::models::MgsEntity>,
#[serde(rename = "rangeSigs")]
pub range_sigs: Vec<crate::models::RangeSigsEntity>,
}
impl RctSigPrunable {
pub fn new(mgs: Vec<crate::models::MgsEntity>, range_sigs: Vec<crate::models::RangeSigsEntity>) -> RctSigPrunable {
RctSigPrunable {
mgs,
range_sigs,
}
}
}