sozsoft-platform/api/src/Sozsoft.Platform.Domain.Shared/Public/BankDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

9 lines
232 B
C#

namespace Sozsoft.Platform.Public;
public class BankDto
{
public string AccountHolder { get; set; }
public string Branch { get; set; }
public string AccountNumber { get; set; }
public string Iban { get; set; }
}