Skip to content

Commit 4833386

Browse files
committed
add SellerLogoDto
1 parent 67196b0 commit 4833386

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/pax.XRechnung.NET/Dtos/SellerDto.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,19 @@ public record SellerDto
8888
/// Seller Name
8989
/// </summary>
9090
public string RegistrationName { get; set; } = string.Empty;
91+
/// <summary>
92+
/// Seller Logo
93+
/// </summary>
94+
public SellerLogoDto? Logo { get; set; }
9195
}
96+
97+
/// <summary>
98+
/// SellerLogoDto
99+
/// </summary>
100+
public class SellerLogoDto
101+
{
102+
/// <summary>
103+
/// PNG Base64String
104+
/// </summary>
105+
public string Base64String { get; set; } = string.Empty;
106+
}

0 commit comments

Comments
 (0)