26 lines
797 B
C#
26 lines
797 B
C#
|
|
using System;
|
||
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Kurs.Platform.Entities;
|
||
|
|
|
||
|
|
public class Branch : FullAuditedEntity<Guid>
|
||
|
|
{
|
||
|
|
public Guid TenantId { get; set; }
|
||
|
|
public string Code { get; set; }
|
||
|
|
public string Name { get; set; }
|
||
|
|
public long VknTckn { get; set; }
|
||
|
|
public string TaxOffice { get; set; }
|
||
|
|
public string Address { get; set; }
|
||
|
|
public string Address2 { get; set; }
|
||
|
|
public string District { get; set; }
|
||
|
|
public string City { get; set; }
|
||
|
|
public string PostalCode { get; set; }
|
||
|
|
public long? Phone { get; set; }
|
||
|
|
public long Mobile { get; set; }
|
||
|
|
public long? Fax { get; set; }
|
||
|
|
public string Email { get; set; }
|
||
|
|
public string Website { get; set; }
|
||
|
|
public bool? IsActive { get; set; }
|
||
|
|
}
|