File size: 502 Bytes
fc06b79 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | namespace ContactManagementAPI.Models
{
public class ContactBankAccount
{
public int Id { get; set; }
public int ContactId { get; set; }
public Contact? Contact { get; set; }
public string? AccountNumber { get; set; }
public string? BankName { get; set; }
public string? BranchName { get; set; }
public string? IfscCode { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}
}
|