Sign in

唐召明 / WorkHourStatistics · Files

Logo

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • WorkHourStatistics
  • Dtos
  • DevTokenDto.cs
  • 对接薪事力平台
    33954f1f
    唐召明 authored
    2024-10-30 16:52:09 +0800  
    Browse Code »
DevTokenDto.cs 355 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
namespace HHECS.WorkHourStatistics.Dtos
{
    internal class DevTokenDto
    {
        /// <summary>
        /// 生成的devToken
        /// </summary>
        public string DevToken { get; set; } = default!;

        /// <summary>
        /// devToken的过期时间(秒)
        /// </summary>
        public int ExpireIn { get; set; }
    }
}