ElsaOptions.cs 553 B

123456789101112131415161718192021222324
  1. // 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
  2. //
  3. // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
  4. namespace Admin.NET.Plugin.Elsa;
  5. /// <summary>
  6. /// Elsa 配置选项
  7. /// </summary>
  8. public sealed class ElsaOptions : IConfigurableOptions
  9. {
  10. /// <summary>
  11. /// 服务地址
  12. /// </summary>
  13. public Elsa_Server Server { get; set; }
  14. }
  15. public sealed class Elsa_Server
  16. {
  17. /// <summary>
  18. /// 地址
  19. /// </summary>
  20. public string BaseUrl { get; set; }
  21. }