erp-platform/api/src/Kurs.Platform.Application.Contracts/Tenants/CustomTenantDto.cs

27 lines
792 B
C#
Raw Normal View History

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; }
public Guid? Id { get; set; }
public string InstitutionName { get; set; }
public string Founder { 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 Country { 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; }
}