summaryrefslogtreecommitdiff
path: root/Sora/Data/Settings/SettingsFolder.swift
blob: ce19561a4ea67fb567257c68fc3c9961a47841c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Foundation

struct SettingsFolder: Codable, Identifiable, Hashable {
  let id: UUID
  let name: String
  let createdAt: Date

  init(name: String, id: UUID = UUID()) {
    createdAt = Date()
    self.id = id
    self.name = name
  }
}