25 lines
455 B
Swift
25 lines
455 B
Swift
//
|
|
// AudioRecordDto+Presets.swift
|
|
// AutoCatTests
|
|
//
|
|
// Created by Selim Mustafaev on 05.04.2025.
|
|
// Copyright © 2025 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
import AutoCatCore
|
|
|
|
extension AudioRecordDto {
|
|
|
|
static let testPath = "testPath"
|
|
|
|
public static var `default`: Self {
|
|
.init(
|
|
path: testPath,
|
|
number: nil,
|
|
raw: "",
|
|
duration: 0,
|
|
event: nil
|
|
)
|
|
}
|
|
}
|