28 lines
891 B
C#
28 lines
891 B
C#
using System;
|
|
|
|
namespace Kurs.Platform.Tenants;
|
|
|
|
public class CustomTenantDto
|
|
{
|
|
public string Name { get; set; }
|
|
public bool IsActive { get; set; }
|
|
|
|
public Guid? Id { get; set; }
|
|
public string OrganizationName { get; set; }
|
|
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; }
|
|
public string District { get; set; }
|
|
public string Street { get; set; }
|
|
public string Address1 { get; set; }
|
|
public string Address2 { get; set; }
|
|
public string PostalCode { get; set; }
|
|
public long MobileNumber { get; set; }
|
|
public long? PhoneNumber { get; set; }
|
|
public long? FaxNumber { get; set; }
|
|
public string Email { get; set; }
|
|
public string Website { get; set; }
|
|
public string MenuGroup { get; set; }
|
|
}
|