mirror of
https://github.com/yattee/yattee.git
synced 2025-01-24 05:37:49 +00:00
7 lines
166 B
Swift
7 lines
166 B
Swift
|
import Foundation
|
||
|
|
||
|
final class TrendingState: ObservableObject {
|
||
|
@Published var category: TrendingCategory = .default
|
||
|
@Published var country: Country = .pl
|
||
|
}
|