Files
moadiran/Shared/DTOs/BasePriceDto.cs

10 lines
212 B
C#
Raw Permalink Normal View History

2024-03-30 15:10:36 +03:30
namespace Shared.DTOs
{
public class BasePriceDto
{
public int PermissionID { get; set; }
public string CalculationType { get; set; }
public decimal Price { get; set; }
}
}