13 lines
297 B
C#
13 lines
297 B
C#
namespace Apimanager_backend.Dtos
|
|
{
|
|
public class PackageInfoDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int CallLimit { get; set; }
|
|
public decimal Price { get; set; }
|
|
public int OneMinuteLimit { get; set; }
|
|
|
|
}
|
|
}
|