20 lines
No EOL
542 B
C#
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; }
|
|
} |