26 lines
512 B
Swift
26 lines
512 B
Swift
//
|
|
// VehicleEventDto+ViewModel.swift
|
|
// AutoCatTests
|
|
//
|
|
// Created by Selim Mustafaev on 25.01.2025.
|
|
// Copyright © 2025 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
@testable import AutoCat
|
|
import AutoCatCore
|
|
import CoreLocation
|
|
|
|
extension VehicleEventDto {
|
|
|
|
var viewModel: EventModel {
|
|
|
|
EventModel(
|
|
id: id,
|
|
date: "",
|
|
coordinate: CLLocationCoordinate2DMake(latitude, longitude),
|
|
address: address ?? "",
|
|
isMe: true
|
|
)
|
|
}
|
|
}
|