syntax = "proto3"; package onprem.user.v1; option go_package = "gitlab.com/on-prem-net/protocol/onprem/user/v1;userproto"; import "google/protobuf/timestamp.proto"; message DeviceType { string id = 1; optional string manufacturer = 2; optional string model = 3; optional string part_number = 4; google.protobuf.Timestamp created_at = 5; string created_by_user_id = 6; optional google.protobuf.Timestamp deleted_at = 7; optional google.protobuf.Timestamp updated_at = 8; optional string updated_by_user_id = 9; optional string image_file_info_id = 10; }