mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +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
|
|
}
|