aboutsummaryrefslogtreecommitdiff
path: root/Hotline/Models/FileDetails.swift
blob: dc302e82a41f4c9248128c0423bd4fd0344c24b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import UniformTypeIdentifiers

struct FileDetails: Identifiable {
  let id = UUID()
  var name: String
  var path: [String]
  var size: Int
  var comment: String
  var type: String
  var creator: String
  var created: Date
  var modified: Date
}