Files
resgen.swift/Sources/ResgenSwift/Analytics/Model/AnalyticsParameter.swift
Thibaut Schmitt 5b0ae8afe5
Some checks reported errors
gitea-openium/resgen.swift/pipeline/head Something is wrong with the build of this commit
Optional generation of extension (R.xx)
Optional generation of Colors/Fonts/Images/Stringium extension
2025-07-17 14:21:26 +02:00

29 lines
523 B
Swift

//
// AnalyticsParameter.swift
//
//
// Created by Loris Perret on 06/12/2023.
//
import Foundation
class AnalyticsParameter {
// MARK: - Properties
var name: String
var type: ParameterType
var value: String
var defaultValue: String
var replaceIn: [String] = []
// MARK: - Init
init(name: String, type: ParameterType, value: String, defaultValue: String) {
self.name = name
self.type = type
self.value = value
self.defaultValue = defaultValue
}
}