sozsoft-platform/api/src/Sozsoft.Platform.Domain.Shared/Public/BankDto.cs

10 lines
232 B
C#
Raw Normal View History

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