diff options
author | Arturs Artamonovs <arturs.artamonovs@protonmail.com> | 2025-01-17 09:27:56 +0000 |
---|---|---|
committer | Arturs Artamonovs <arturs.artamonovs@protonmail.com> | 2025-01-17 09:27:56 +0000 |
commit | 06a90001363fdcb542b531a74ed2c18f714f58c4 (patch) | |
tree | e0ae3092494e6136ec7479b0e9bda20ef930039b /Waterfall_UI/Item.swift | |
parent | a0d12ecbac8fe327d1dcd4580fee594e24d4191b (diff) | |
download | PrySDR-06a90001363fdcb542b531a74ed2c18f714f58c4.tar.gz PrySDR-06a90001363fdcb542b531a74ed2c18f714f58c4.zip |
waterfallui: data get processed and drawn, ui controlls are dummy
Diffstat (limited to 'Waterfall_UI/Item.swift')
-rw-r--r-- | Waterfall_UI/Item.swift | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Waterfall_UI/Item.swift b/Waterfall_UI/Item.swift new file mode 100644 index 0000000..0f2a8ae --- /dev/null +++ b/Waterfall_UI/Item.swift @@ -0,0 +1,18 @@ +// +// Item.swift +// Waterfall_UI +// +// Created by Jacky Jack on 06/01/2025. +// + +import Foundation +import SwiftData + +@Model +final class Item { + var timestamp: Date + + init(timestamp: Date) { + self.timestamp = timestamp + } +} |