omnivore/apple/OmnivoreKit/Sources/Models/DataModels/Feature.swift

12 lines
201 B
Swift
Raw Normal View History

2024-04-23 02:04:10 +00:00
import SwiftUI
public struct FeatureInternal {
public let name: String
public let enabled: Bool
public init(name: String, enabled: Bool) {
self.name = name
self.enabled = enabled
}
}