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.
public record ProfileInformation(string SenderName, string Base64ProfilePictureData);
}