diff options
| author | Dustin Mierau <dustin@mierau.me> | 2023-12-19 20:38:13 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2023-12-19 20:38:13 -0800 |
| commit | 4fd69c02a3e7b581bb9229865336c315153f3b18 (patch) | |
| tree | e6e11d872424196f2b4033077902126ad5556e40 /Hotline/Models/User.swift | |
| parent | 5e87b5927cd931d46fb5f72fb035480a95969a9f (diff) | |
Beginnings of a UI for macOS as well as some visual changes to iOS client. :)
Diffstat (limited to 'Hotline/Models/User.swift')
| -rw-r--r-- | Hotline/Models/User.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Hotline/Models/User.swift b/Hotline/Models/User.swift index 9011e56..1a921e2 100644 --- a/Hotline/Models/User.swift +++ b/Hotline/Models/User.swift @@ -1,7 +1,7 @@ import SwiftUI struct UserStatus: OptionSet { - let rawValue: Int + let rawValue: UInt static let idle = UserStatus(rawValue: 1 << 0) static let admin = UserStatus(rawValue: 1 << 1) |