jibai-kia / ICT2106_P1-6

0 stars 0 forks source link

Implementation of Reward DTO #49

Open jibai-kia opened 1 year ago

jibai-kia commented 1 year ago

This thread provides updates related to Reward DTO

jibai-kia commented 1 year ago
namespace CleanBrightCompany.DTOs;

public class RewardDto
{
    public int Id { get; set; }
    public string Name { get; set; } = string.Empty;
    public string Description { get; set; } = string.Empty;
    public int PointCost { get; set; }
    public bool IsActive { get; set; }
    public string ImageUrl { get; set; } = string.Empty;
}