15 lines
328 B
C#
15 lines
328 B
C#
namespace CompanyManagment.App.Contracts.PaymentInstrument;
|
|
/// <summary>
|
|
/// نوع حساب های جاری شرکا
|
|
/// </summary>
|
|
public enum PaymentInstrumentType
|
|
{
|
|
/// <summary>
|
|
/// حساب بانکی
|
|
/// </summary>
|
|
BankAccount,
|
|
/// <summary>
|
|
/// دستگاه پوز
|
|
/// </summary>
|
|
Pos
|
|
} |