We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67196b0 commit 4833386Copy full SHA for 4833386
src/pax.XRechnung.NET/Dtos/SellerDto.cs
@@ -88,4 +88,19 @@ public record SellerDto
88
/// Seller Name
89
/// </summary>
90
public string RegistrationName { get; set; } = string.Empty;
91
+ /// <summary>
92
+ /// Seller Logo
93
+ /// </summary>
94
+ public SellerLogoDto? Logo { get; set; }
95
}
96
+
97
+/// <summary>
98
+/// SellerLogoDto
99
+/// </summary>
100
+public class SellerLogoDto
101
+{
102
103
+ /// PNG Base64String
104
105
+ public string Base64String { get; set; } = string.Empty;
106
+}
0 commit comments