2025-08-11 06:34:44 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Tenants;
|
|
|
|
|
|
|
|
|
|
public class CustomTenantDto
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public bool IsActive { get; set; }
|
2025-10-09 09:44:28 +00:00
|
|
|
|
2025-08-11 06:34:44 +00:00
|
|
|
public Guid? Id { get; set; }
|
2025-08-23 17:56:54 +00:00
|
|
|
public string OrganizationName { get; set; }
|
2025-08-11 06:34:44 +00:00
|
|
|
public string Founder { get; set; }
|
|
|
|
|
public long VknTckn { get; set; }
|
|
|
|
|
public string TaxOffice { get; set; }
|
|
|
|
|
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; }
|
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-08-11 06:34:44 +00:00
|
|
|
public string PostalCode { get; set; }
|
2025-11-03 20:31:28 +00:00
|
|
|
public long MobileNumber { get; set; }
|
|
|
|
|
public long? PhoneNumber { get; set; }
|
|
|
|
|
public long? FaxNumber { get; set; }
|
2025-08-11 06:34:44 +00:00
|
|
|
public string Email { get; set; }
|
|
|
|
|
public string Website { get; set; }
|
2025-10-11 23:29:45 +00:00
|
|
|
public string MenuGroup { get; set; }
|
2025-08-11 06:34:44 +00:00
|
|
|
}
|