ql_apimanager_backend/Apimanager_backend/Models/PaymentConfigDto.cs

16 lines
405 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel.DataAnnotations;
namespace Apimanager_backend.Models
{
public class PaymentConfigDto
{
public int Id { get; set; }
/// <summary>支付方式(如 Alipay、WeChat、Stripe...</summary>
public PaymentType Method { get; set; } // varchar(50)
/// <summary>备注</summary>
public string? Description { get; set; }
}
}