using System; using System.Collections.Generic; using System.Text; namespace Grpc.Extension.Abstract.Model { /// /// GrpcErrorCode /// public class GrpcErrorCode { /// /// 默认错误码 /// public static int DefaultErrorCode = 1; /// /// 内部异常 /// public const int Internal = 0; } }