RefreshTokenDestroyed 콜백 명칭 수정, LicenseCheckInterval 최솟값 버그 수정 및 불필요 using 정리

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-07-01 14:37:36 +09:00
co-authored by Claude Sonnet 4.6
parent ee38072ff9
commit f290500eff
8 changed files with 14 additions and 29 deletions
+6 -6
View File
@@ -1,5 +1,4 @@
using System.ComponentModel.Design.Serialization;
using System.Globalization;
using System.Globalization;
namespace BaronSoftware.SSO
{
@@ -62,13 +61,14 @@ namespace BaronSoftware.SSO
get => licenseCheckInterval;
set
{
if (value < 15)
licenseCheckInterval = 15;
licenseCheckInterval = value;
if (value < 30)
licenseCheckInterval = 30;
else
licenseCheckInterval = value;
}
}
public Action ExpiredToken { get; set; }
public Action RefreshTokenDestroyed { get; set; }
}
}