23 lines
550 B
Swift
23 lines
550 B
Swift
//
|
|
// VehicleNoteDto.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 12.06.2024.
|
|
// Copyright © 2024 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct VehicleNoteDto: Codable, Sendable, Identifiable, Equatable {
|
|
|
|
public var id: String = UUID().uuidString
|
|
public var user: String = ""
|
|
public var date: TimeInterval = Date().timeIntervalSince1970
|
|
public var text: String = ""
|
|
|
|
public init(text: String) {
|
|
self.text = text
|
|
self.user = Settings.shared.user.email
|
|
}
|
|
}
|