sozsoft-platform/api/src/Sozsoft.Platform.Domain/Branch/BranchSeederDto.cs

22 lines
585 B
C#
Raw Normal View History

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