blob: 90f48f519d63e9e42b233e56d6dcc8655a05b45c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2025 metamuffin <metamuffin.org>
*/
use bincode::{Decode, Encode};
use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, Encode, Decode)]
pub struct SubtitleCue {
pub start: f64,
pub end: f64,
pub content: String,
}
|