22 lines
No EOL
585 B
C#
22 lines
No EOL
585 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Sozsoft.Platform.Branchs;
|
|
|
|
public class BranchSeederDto
|
|
{
|
|
public List<BankSeedDto> Banks { get; set; }
|
|
}
|
|
|
|
public class BankSeedDto
|
|
{
|
|
public string Code { get; set; }
|
|
public string Name { get; set; }
|
|
public string Address1 { get; set; }
|
|
public string Address2 { get; set; }
|
|
public string Country { get; set; }
|
|
public string City { get; set; }
|
|
public string District { get; set; }
|
|
public string PostalCode { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string Email { get; set; }
|
|
} |