mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-23 16:51:01 +00:00
7 lines
174 B
Swift
7 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
|
|
}
|