mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-02-10 06:52:24 +00:00
* Timeline: restore the selected timeline at the next startup Signed-off-by: Yusuke Arakawa <nekolaboratory@users.noreply.github.com> * Rename: UserDefaultas label name Signed-off-by: Yusuke Arakawa <nekolaboratory@users.noreply.github.com> * Timeline: RawRepresentable of TimelineFilter Signed-off-by: Yusuke Arakawa <nekolaboratory@users.noreply.github.com> * Cleanup code * Supports RemoteTimelineFilter * Cleanup code * Safe saves last viewed status --------- Signed-off-by: Yusuke Arakawa <nekolaboratory@users.noreply.github.com> Co-authored-by: Yusuke Arakawa <nekolaboratory@users.noreply.github.com>
7 lines
172 B
Swift
7 lines
172 B
Swift
import Foundation
|
|
|
|
public struct List: Codable, Identifiable, Equatable, Hashable {
|
|
public let id: String
|
|
public let title: String
|
|
public let repliesPolicy: String
|
|
}
|