2026-02-27 17:12:12 +00:00
|
|
|
|
using System.Collections.Generic;
|
2026-02-24 20:44:16 +00:00
|
|
|
|
|
|
|
|
|
|
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; }
|
2026-02-27 17:12:12 +00:00
|
|
|
|
}
|