16 lines
298 B
Swift
16 lines
298 B
Swift
//
|
|
// RecordScreenOutput.swift
|
|
// AutoCat
|
|
//
|
|
// Created by Selim Mustafaev on 02.04.2025.
|
|
// Copyright © 2025 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
import AutoCatCore
|
|
|
|
@MainActor
|
|
protocol RecordScreenOutput: AnyObject {
|
|
|
|
func checkRecord(number: String, event: VehicleEventDto?)
|
|
}
|