erp-platform/api/src/Kurs.Platform.Application.Contracts/Orders/PaymentMethodDto.cs

11 lines
239 B
C#
Raw Normal View History

2025-08-10 21:04:24 +00:00
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; }
}