stack/sdks/implementations/swift/Sources/StackAuth/Models/Permission.swift
Konstantin Wohlwend 66b066db6e Swift SDK
2026-01-19 13:14:13 -08:00

12 lines
252 B
Swift

import Foundation
/// A permission granted to a user within a team or project
public struct TeamPermission: Sendable {
public let id: String
}
/// A project-level permission
public struct ProjectPermission: Sendable {
public let id: String
}