merchant onboarding process completed

This commit is contained in:
2025-08-06 16:11:02 +05:30
parent f90d1f0c57
commit 1a27e282e3
22 changed files with 768 additions and 19 deletions

View File

@ -0,0 +1,25 @@
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using Singer_Hexdive.Enums;
namespace Singer_Hexdive.Models
{
public class MerchantBankDetails
{
[Key]
public int Id { get; set; }
public int FK_MId { get; set; }
[ForeignKey("FK_MId")]
public MerchantPersonalDetail MerchantPersonalDetail { get; set; }
public string CurrencyCode { get; set; }
public BankAccountTypes BankAccountTypes { get; set; }
public string M_BankName { get; set; }
public string M_BankBranchName { get; set; }
public int M_BankAccNum { get; set; }
public string M_BankAccHolderName { get; set; }
public string M_BankHolderIdNum { get; set; }
public string M_PhoneNum { get; set; }
public ApprovedStatus ApprovedStatus { get; set; } = ApprovedStatus.pending;
public DateTime CreatedAt { get; set; }
}
}