12 lines
221 B
C#
12 lines
221 B
C#
|
|
using Hncore.Payment.Enum;
|
||
|
|
|
||
|
|
namespace Hncore.Payment.Request
|
||
|
|
{
|
||
|
|
public class PaymentRequestBase
|
||
|
|
{
|
||
|
|
public int TenantId { get; set; }
|
||
|
|
|
||
|
|
public int StoreId { get; set; } = 0;
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|