Files
SharepointToolbox-Web/Core/Models/LogoData.cs
T
2026-06-02 10:56:03 +02:00

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;
}