// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct CommercialRightsEligibilityResponse: Codable, Equatable {
    public var eligible: Bool

    public init(eligible: Bool) {
        self.eligible = eligible
    }
}
