16 lines
327 B
C#
16 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.DTOs
|
|
{
|
|
public class PricingDto
|
|
{
|
|
public int PermissionID { get; set; }
|
|
public string PermissionTitle { get; set; }
|
|
public decimal Price { get; set; }
|
|
}
|
|
}
|