14 lines
233 B
Swift
14 lines
233 B
Swift
|
//
|
||
|
// String+Constants.swift
|
||
|
// Profile
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 12/12/2022.
|
||
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
extension String {
|
||
|
enum Constants {
|
||
|
static let noValue = "-"
|
||
|
}
|
||
|
}
|