using Microsoft.AspNetCore.Identity; namespace SkyArtShop.Data; public class ApplicationUser : IdentityUser { public string DisplayName { get; set; } = string.Empty; }