merchant onboarding process completed
This commit is contained in:
21
Singer_Hexdive/Models/MerchantDirectors.cs
Normal file
21
Singer_Hexdive/Models/MerchantDirectors.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Singer_Hexdive.Models
|
||||
{
|
||||
public class MerchantDirectors
|
||||
{
|
||||
[Key]
|
||||
public int DirectorId { get; set; }
|
||||
public int FK_MBusinessId { get; set; }
|
||||
[ForeignKey("FK_MBusinessId")]
|
||||
public MerchantBusinessDetail MerchantBusinessDetail { get; set; }
|
||||
public string D_FullName { get; set; }
|
||||
public string D_IdNumber { get; set; }
|
||||
public DateTime Birthday { get; set; }
|
||||
public string D_MobileNumber { get; set; }
|
||||
public string D_Address { get; set; }
|
||||
public DateTime createdAt { get; set; } = DateTime.Now;
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user