GBA-8-19/DeltaFeatures/Types/SettingsUserInfoKey.swift
2024-06-14 17:15:51 +08:00

31 lines
587 B
Swift

//
// SettingsUserInfoKey.swift
// HthikFeatures
//
// Created by Hthik on 4/13/23.
// Copyright © 2024 Hthik
//
import Foundation
public extension SettingsUserInfoKey
{
static let name: SettingsUserInfoKey = "name"
static let value: SettingsUserInfoKey = "value"
}
public struct SettingsUserInfoKey: RawRepresentable, Hashable, ExpressibleByStringLiteral
{
public let rawValue: String
public init(rawValue: String)
{
self.rawValue = rawValue
}
public init(stringLiteral rawValue: String)
{
self.rawValue = rawValue
}
}