mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
18 lines
368 B
Protocol Buffer
18 lines
368 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_acme_provider.proto";
|
|
import "models/model_acme_provider_account.proto";
|
|
|
|
message ACMEUser {
|
|
int64 id = 1;
|
|
string email = 2;
|
|
string description = 3;
|
|
int64 createdAt = 4;
|
|
string acmeProviderCode = 5;
|
|
|
|
ACMEProvider acmeProvider = 30;
|
|
ACMEProviderAccount acmeProviderAccount = 31;
|
|
} |