mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-04 11:53:30 +01:00
15 lines
283 B
Swift
15 lines
283 B
Swift
//
|
|
// Entitlement.swift
|
|
// Supercharge
|
|
//
|
|
// Created by Kabir Oberai on 29/07/19.
|
|
// Copyright © 2019 Kabir Oberai. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import ProtoCodable
|
|
|
|
public protocol Entitlement: ProtoCodable, Sendable {
|
|
static var identifier: String { get }
|
|
}
|