ServerConsts.cs 358 B

12345678910111213
  1. namespace Grpc.Extension.BaseService.Model
  2. {
  3. public class ServerConsts
  4. {
  5. public const string BaseServicePackage = "grpc";
  6. public const string BaseServiceName = "BaseService";
  7. public const string NotResponseMsg = "not enable save response";
  8. public const string ThrottledMsg = "this request is throttled";
  9. }
  10. }