15 lines
301 B
C#
15 lines
301 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
|