WinterGram/third-party/SwiftSVG/Sources/CoreAttributes.swift
2026-04-24 23:19:15 +04:00

17 lines
324 B
Swift

public protocol CoreAttributes {
var id: String? { get set }
}
enum CoreAttributesKeys: String, CodingKey {
case id
}
public extension CoreAttributes {
var coreDescription: String {
if let id {
"\(CoreAttributesKeys.id.rawValue)=\"\(id)\""
} else {
""
}
}
}