erp-platform/api/src/Kurs.Platform.Domain/Entities/Tenant/Branch.cs

31 lines
943 B
C#
Raw Normal View History

using System;
2025-10-03 11:35:52 +00:00
using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
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; }
2025-06-27 07:15:36 +00:00
public string Country { get; set; }
public string City { get; set; }
2025-08-19 19:26:50 +00:00
public string District { get; set; }
public string Street { get; set; }
public string Address { get; set; }
public string Address2 { 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; }
2025-10-03 11:35:52 +00:00
public virtual ICollection<BranchUsers> Users { get; set; }
}