AutoCat/AutoCat/Extensions/Exportable.swift
2021-03-28 21:28:08 +03:00

7 lines
116 B
Swift

import Foundation
protocol Exportable {
static var csvHeader: String { get }
var csvLine: String { get }
}