using Microsoft.AspNetCore.Identity; namespace AutobusApi.Infrastructure.Identity; public class ApplicationUser : IdentityUser { public ICollection RefreshTokens { get; set; } = null!; }