Skip to main content

tano_database/
song.rs

1define_entity!(CreateSong, Song {
2    id: i64,
3    provider_id: i64,
4    album_id: i64,
5    title: String,
6    track_number: Option<i64>,
7    duration: i64,
8    year: Option<i64>,
9});