namespace Wino.Core.Domain.Models.Authentication; /// /// Previously known as TokenInformation. /// We used to store this model in the database. /// Now we store it in the memory. /// /// Access token/ /// Address of the authenticated user. public record TokenInformationEx(string AccessToken, string AccountAddress);