10 lines
239 B
C#
10 lines
239 B
C#
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Kurs.Platform.Orders;
|
|
|
|
public class PaymentMethodDto : EntityDto<string>
|
|
{
|
|
public string Name { get; set; }
|
|
public decimal Commission { get; set; }
|
|
public string Logo { get; set; }
|
|
}
|