2025-06-15 08:55:10 +00:00
|
|
|
using System;
|
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Entities;
|
|
|
|
|
|
|
|
|
|
public class Branch : FullAuditedEntity<Guid>
|
|
|
|
|
{
|
2025-10-08 09:04:32 +00:00
|
|
|
public Guid? TenantId { get; set; }
|
2025-10-07 11:19:12 +00:00
|
|
|
|
2025-06-15 08:55:10 +00:00
|
|
|
public string Code { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public long VknTckn { get; set; }
|
|
|
|
|
public string TaxOffice { get; set; }
|
2025-06-27 07:15:36 +00:00
|
|
|
public string Country { get; set; }
|
2025-06-15 08:55:10 +00:00
|
|
|
public string City { get; set; }
|
2025-08-19 19:26:50 +00:00
|
|
|
public string District { get; set; }
|
|
|
|
|
public string Street { get; set; }
|
2025-10-21 14:32:50 +00:00
|
|
|
public string Address1 { get; set; }
|
2025-08-19 19:26:50 +00:00
|
|
|
public string Address2 { get; set; }
|
2025-06-15 08:55:10 +00:00
|
|
|
public string PostalCode { get; set; }
|
2025-10-09 09:44:28 +00:00
|
|
|
public string Phone { get; set; }
|
|
|
|
|
public string Mobile { get; set; }
|
|
|
|
|
public string Fax { get; set; }
|
2025-06-15 08:55:10 +00:00
|
|
|
public string Email { get; set; }
|
|
|
|
|
public string Website { get; set; }
|
|
|
|
|
public bool? IsActive { get; set; }
|
|
|
|
|
}
|