remove this file

This commit is contained in:
Chris Cochrun 2024-09-17 06:22:24 -05:00
parent f209c60f02
commit 119039664e

View file

@ -1,25 +0,0 @@
enum PresType {
Html,
Pdf,
}
enum SlideType {
Song,
Video,
Image,
Presentation(PresType),
Content,
}
// /// An Image is a tuple struct with the string being a location on disk
// struct Image(String);
struct Slide {
id: i32, // This is the inner index, could be 3 inside a presentation or image gallery
kind: SlideType,
}
struct SlideModel {
index: i32,
slides: Vec<Slide>,
}