Commit b4619d43 authored by Mário Hatalčík's avatar Mário Hatalčík
Browse files

add image upload

parent 52dce923
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
public class GiftCardCreateDto
{
    public int Discount { get; set; }
    public string Name { get; set; }
    public string Name { get; set; } = "";
    public int CouponsCount { get; set; }
    public DateTime? StartDateTime { get; set; }
    public DateTime? ExpiryDateTime { get; set; }
+0 −1
Original line number Diff line number Diff line
@@ -2,6 +2,5 @@

public class GiftCardDetailDto : GiftCardViewDto
{
    public int Id { get; set; }
    public List<CouponCodeDto> CouponCodes { get; set; } = [];
}
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
public class GiftCardEditDto
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Name { get; set; } = "";
    public int Discount { get; set; }
    public int CouponsCount { get; set; }
    public DateTime? StartDateTime { get; set; }
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
public class GiftCardViewDto
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Name { get; set; } = "";
    public int Discount { get; set; }
    public int CouponsCount { get; set; }
    public DateTime? StartDateTime { get; set; }
+1 −1
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@

public class ProductImageDto : ProductDto
{
    public required string ImageValue { get; set; }
    public string? ImageValue { get; set; }
}
Loading