Feature: Notes creation

This commit is contained in:
2025-09-25 19:36:21 +02:00
parent 7b84754bd6
commit 209e08754b
5 changed files with 123 additions and 14 deletions
+15
View File
@@ -0,0 +1,15 @@
//
// Note.swift
// Peered
//
// Created by Oskar Chybowski on 25/09/2025.
//
import Foundation
struct Note: Identifiable {
var id: URL { path }
let name: String
let path: URL
}