8 lines
187 B
C#
8 lines
187 B
C#
namespace SharepointToolbox.Web.Core.Models;
|
|
|
|
public record LogoData
|
|
{
|
|
public string Base64 { get; init; } = string.Empty;
|
|
public string MimeType { get; init; } = string.Empty;
|
|
}
|