import RealFlags

public extension ParameterStores {
    struct Create: SunoStatsigParameterStore {
        public static let parameterStoreName: String = "ios-create"

        @Flag(key: "remix-and-attribution", default: false, description: "Flag to determine if we show the remix and attribution feature set")
        public var remixAndAttribution: Bool

        @Flag(key: "remix-perm", default: false, description: "Flag to determine if we show the remix announcements.")
        public var remixPerm: Bool

        @Flag(key: "remix-cover", default: false, description: "Flag to determine if we allow users to cover songs from others.")
        public var remixCover: Bool

        public init() {}
    }
}
