Files
moadiran/Shared/DTOs/PromotionDto.cs

16 lines
343 B
C#
Raw Normal View History

2024-07-25 17:18:03 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class PromotionDto
{
public int ID { get; set; }
public string Name { get; set; }
public ICollection<PromotionDetailDto> promotionDetails { get; set; }
}
}