15 lines
192 B
Swift
15 lines
192 B
Swift
//
|
|
// Conformance.swift
|
|
// Adwaita
|
|
//
|
|
// Created by david-swift on 14.02.24.
|
|
//
|
|
|
|
/// A protocol conformance.
|
|
struct Conformance: Decodable {
|
|
|
|
/// The type name.
|
|
var name: String
|
|
|
|
}
|