mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-01-14 07:27:38 +01:00
8 lines
174 B
Swift
8 lines
174 B
Swift
import Foundation
|
|
|
|
public struct List: Decodable, Identifiable, Equatable, Hashable {
|
|
public let id: String
|
|
public let title: String
|
|
public let repliesPolicy: String
|
|
}
|