mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-19 03:01:21 +10:00
12 lines
217 B
Plaintext
12 lines
217 B
Plaintext
model ApplicationSettings {
|
|
timestamp DateTime @id @default(now())
|
|
|
|
enabledAuthencationMechanisms AuthMec[]
|
|
}
|
|
|
|
enum Platform {
|
|
Windows @map("windows")
|
|
Linux @map("linux")
|
|
macOS @map("macos")
|
|
}
|