sozsoft-platform/api/src/Sozsoft.Platform.Domain/Branch/BranchSeederDto.cs
2026-02-27 20:12:12 +03:00

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; }
}