2026-02-24 20:44:16 +00:00
|
|
|
|
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; }
|
2026-03-17 13:35:58 +00:00
|
|
|
|
public string StyleClass { get; set; }
|
2026-02-24 20:44:16 +00:00
|
|
|
|
}
|