namespace Wino.Core.Domain.Models.Accounts
{
///
/// Encapsulates the profile information of an account.
///
/// Display sender name for the account.
/// Base 64 encoded profile picture data of the account. Thumbnail size.
/// Address of the profile.
public record ProfileInformation(string SenderName, string Base64ProfilePictureData, string AccountAddress);
}