10 lines
212 B
C#
10 lines
212 B
C#
namespace Shared.DTOs
|
|
{
|
|
public class BasePriceDto
|
|
{
|
|
public int PermissionID { get; set; }
|
|
public string CalculationType { get; set; }
|
|
public decimal Price { get; set; }
|
|
}
|
|
}
|