基础服务api
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
589 B

  1. using BPA.SAAS.Manage.Core.DataBase;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Application.Auth.Dtos
  8. {
  9. public class PlatformAuthorizationDto: BPA_PlatformAuthorization
  10. {
  11. }
  12. public class CreateOrUpDatePlatformAuthorizationDto
  13. {
  14. public string Id { get; set; }
  15. public string Key { get; set; }
  16. /// <summary>
  17. /// 有效期 长期有效为空
  18. /// </summary>
  19. public DateTime? PeriodValidity { get; set;}
  20. }
  21. }