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,27 @@
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using Singer_Hexdive.Enums;
namespace Singer_Hexdive.Models
{
public class MerchantPersonalDetail
{
[Key]
public int MechantId { get; set; }
public string MerchantName { get; set; }
public int FK_IdType { get; set; }
[ForeignKey("FK_IdType")]
public IdentificationType IdentificationType { get; set; }
public string M_IdNumber { get; set; }
public string M_Email { get; set; }
public string M_Mobile_Primary { get; set; }
public string? M_Mobile_Secondary { get; set; }
public string M_Address { get; set; }
public string M_City { get; set; }
public int M_PostalCode { get; set; }
public DateTime OnboardDate { get; set; }
public DateTime CreatedAt { get; set; } = DateTime.Now;
public bool IsActive { get; set; } = true;
public ApprovedStatus ApprovedStatus { get; set; } = ApprovedStatus.pending;
}
}