use crate::service::types::WalletInfoGrin;
use askama::Template;
#[derive(Template)]
#[template(path = "send-success.html")]
pub struct SendSuccessTemplate<'a> {
pub amount: f64,
pub fee: f64,
pub block_height: &'a str,
pub id: &'a str,
}
#[derive(Template)]
#[template(path = "info-success.html")]
pub struct InfoSuccessTemplate {
pub info: WalletInfoGrin,
}
#[derive(Template)]
#[template(path = "seed.html")]
pub struct SeedTemplate<'a> {
pub seed: &'a str,
}
#[derive(Template)]
#[template(path = "help.html")]
pub struct HelpTemplate {}