mirror of
https://github.com/yattee/yattee.git
synced 2025-04-27 23:40:35 +05:30
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
|
|
}
|