adding selecting multiple items. Still needs work

This commit is contained in:
Chris Cochrun 2023-09-27 09:45:41 -05:00
parent bef09ed805
commit 83d7249a8b
3 changed files with 55 additions and 3 deletions

View file

@ -3,4 +3,19 @@ mod song_editor {
Yes,
No,
}
pub struct EditableSong {
title: String,
lyrics: String,
author: String,
ccli: String,
audio: String,
verse_order: String,
background: String,
background_type: String,
horizontal_text_alignment: String,
vertical_text_alignment: String,
font: String,
font_size: i32,
}
}