erp-platform/api/src/Kurs.Platform.Application.Contracts/Banks/BankDto.cs
Sedat Öztürk 81ced25160 Düzenleme
2025-08-11 00:49:52 +03:00

20 lines
No EOL
542 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.Platform.Banks;
public class BankDto : AuditedEntityDto<Guid>
{
public string Name { get; set; }
public string IdentifierCode { get; set; }
public string AddressLine1 { get; set; }
public string AddressLine2 { get; set; }
public string District { get; set; }
public string City { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
public string Phone { get; set; }
public string Email { get; set; }
}