order
This commit is contained in:
18
Shared/DTOs/PromotionDetailDto.cs
Normal file
18
Shared/DTOs/PromotionDetailDto.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Shared.DTOs
|
||||
{
|
||||
public class PromotionDetailDto
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public int PermissionID { get; set; }
|
||||
public string PermissionTitle { get; set; }
|
||||
public int CreditAmount { get; set; }
|
||||
public decimal APrice { get; set; }
|
||||
public decimal TPrice { get { return APrice * CreditAmount; } }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user