using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace HaBook.IES.IdentityServer.AzureTableStorage.Options { public class TokenCleanupOptions { public int Interval { get; set; } = 60; } }