Some checks failed
gitea-openium/resgen.swift/pipeline/head There was a failure building this commit
22 lines
333 B
Swift
22 lines
333 B
Swift
//
|
|
// AnalyticsParameter.swift
|
|
//
|
|
//
|
|
// Created by Loris Perret on 06/12/2023.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class AnalyticsParameter {
|
|
var name: String
|
|
var type: String
|
|
var replaceIn: [String] = []
|
|
|
|
// MARK: - Init
|
|
|
|
init(name: String, type: String) {
|
|
self.name = name
|
|
self.type = type
|
|
}
|
|
}
|