using Volo.Abp.Application.Dtos; namespace Kurs.Platform.Orders; public class PaymentMethodDto : EntityDto { public string Name { get; set; } public decimal Commission { get; set; } public string Logo { get; set; } }