Files
Wino-Mail/Wino.Core.Domain/Models/Accounts/ProfileInformation.cs
2025-02-16 11:54:23 +01:00

10 lines
501 B
C#

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