diff options
| author | Fuwn <[email protected]> | 2025-02-20 06:04:18 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-20 06:04:18 -0800 |
| commit | 82d7c141c000a05aa569880ccd44781e43be9654 (patch) | |
| tree | 34886928eccc3ba8dac76e9e54e169eb080eba43 /Sora/Data/Settings | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-82d7c141c000a05aa569880ccd44781e43be9654.tar.xz sora-testing-82d7c141c000a05aa569880ccd44781e43be9654.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Data/Settings')
| -rw-r--r-- | Sora/Data/Settings/Bookmark.swift | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Sora/Data/Settings/Bookmark.swift b/Sora/Data/Settings/Bookmark.swift new file mode 100644 index 0000000..2e6fc93 --- /dev/null +++ b/Sora/Data/Settings/Bookmark.swift @@ -0,0 +1,13 @@ +import Foundation + +struct Bookmark: Codable, Identifiable, Hashable { + let id: UUID + let tags: [String] + let createdAt: Date + + init(id: UUID = UUID(), tags: [String]) { + createdAt = Date() + self.id = id + self.tags = tags + } +} |