RefreshIntervalEntity.cs 300 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Host.Entity
  6. {
  7. public class RefreshIntervalEntity
  8. {
  9. /// <summary>
  10. /// 间隔时间
  11. /// </summary>
  12. public int IntervalTime { get; set; } = 10;
  13. }
  14. }