SystemService.cs 221 B

123456789
  1. namespace gpt_api.Application;
  2. public class SystemService : ISystemService, ITransient
  3. {
  4. public string GetDescription()
  5. {
  6. return "让 .NET 开发更简单,更通用,更流行。";
  7. }
  8. }