sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/PaymentMethodDto.cs

15 lines
301 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Platform.Public;
public class PaymentMethodDto : EntityDto<string>
{
public Guid? TenantId { get; set; }
public string Name { get; set; }
public decimal Commission { get; set; }
public string Logo { get; set; }
}