mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
14 lines
277 B
Protocol Buffer
14 lines
277 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
enum ReportReasonType {
|
|
REPORT_REASON_TYPE_NONE = 0;
|
|
REPORT_REASON_TYPE_DECEPTIVE_ADS = 1;
|
|
REPORT_REASON_TYPE_ABUSING = 2;
|
|
REPORT_REASON_TYPE_CHEAT = 3;
|
|
REPORT_REASON_TYPE_POLITICAL = 4;
|
|
REPORT_REASON_TYPE_OTHER = 5;
|
|
REPORT_REASON_TYPE_HOME = 6;
|
|
}
|