trancriptlib/dto/
replication.rs

1
2
3
4
5
6
7
8
9
10
11
12
13

use serde::Deserialize;
use serde::Serialize;
use std::clone::Clone;


#[derive(Serialize, Deserialize, Clone)]
pub struct Replication {
    pub start: f32,
    pub end: f32,
    pub author: String,
    pub message: String,
}