mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-19 21:00:40 +08:00
12 lines
252 B
Swift
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
|
|
}
|