aboutsummaryrefslogtreecommitdiff
path: root/HoloBar/Character.swift
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-02-07 00:46:37 -0800
committerFuwn <[email protected]>2025-02-07 00:48:26 -0800
commitf3b0018992dec16349ac6132d1ae7f35be62c1ca (patch)
treec68e062b07e88352d18ef641f8138839f84467f1 /HoloBar/Character.swift
downloadholobar-f3b0018992dec16349ac6132d1ae7f35be62c1ca.tar.xz
holobar-f3b0018992dec16349ac6132d1ae7f35be62c1ca.zip
feat: initial release
Diffstat (limited to 'HoloBar/Character.swift')
-rw-r--r--HoloBar/Character.swift7
1 files changed, 7 insertions, 0 deletions
diff --git a/HoloBar/Character.swift b/HoloBar/Character.swift
new file mode 100644
index 0000000..23132a2
--- /dev/null
+++ b/HoloBar/Character.swift
@@ -0,0 +1,7 @@
+import Foundation
+
+struct Character: Identifiable {
+ let id = UUID()
+ let name: String
+ let profileURL: URL
+}