AbpUserWindowsTimeZoneConfigDto.cs 349 B

12345678910111213
  1. namespace Abp.Web.Models.AbpUserConfiguration
  2. {
  3. public class AbpUserWindowsTimeZoneConfigDto
  4. {
  5. public string TimeZoneId { get; set; }
  6. public double BaseUtcOffsetInMilliseconds { get; set; }
  7. public double CurrentUtcOffsetInMilliseconds { get; set; }
  8. public bool IsDaylightSavingTimeNow { get; set; }
  9. }
  10. }