mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-10 03:16:07 +08:00
18 lines
350 B
Protocol Buffer
18 lines
350 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package userproto;
|
|
|
|
option go_package = "github.com/micromdm/micromdm/platform/user/internal/userproto";
|
|
|
|
message User {
|
|
string uuid = 1;
|
|
string udid = 2;
|
|
string user_id = 3;
|
|
string user_shortname = 4;
|
|
string user_longname = 5;
|
|
string auth_token = 6;
|
|
bytes password_hash = 7;
|
|
bool hidden = 8;
|
|
}
|
|
|