erp-platform/api/src/Kurs.Platform.Application.Contracts/Orders/PaymentMethodDto.cs
Sedat Öztürk e141709937 Düzenleme
2025-08-11 00:04:24 +03:00

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; }
}