shop info
This commit is contained in:
19
Webshop.Application/DTOs/Shop/PublicShopInfoDto.cs
Normal file
19
Webshop.Application/DTOs/Shop/PublicShopInfoDto.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
// src/Webshop.Application/DTOs/Shop/PublicShopInfoDto.cs
|
||||
namespace Webshop.Application.DTOs.Shop
|
||||
{
|
||||
// Dieses DTO enthält nur die Informationen, die ein normaler Kunde sehen soll.
|
||||
public class PublicShopInfoDto
|
||||
{
|
||||
public string ShopName { get; set; } = string.Empty;
|
||||
public string? Slogan { get; set; }
|
||||
public string ContactEmail { get; set; } = string.Empty;
|
||||
public string? PhoneNumber { get; set; }
|
||||
public string? Street { get; set; }
|
||||
public string? City { get; set; }
|
||||
public string? PostalCode { get; set; }
|
||||
public string? Country { get; set; }
|
||||
public string? FacebookUrl { get; set; }
|
||||
public string? InstagramUrl { get; set; }
|
||||
public string? TwitterUrl { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user