2025-08-17 20:05:40 +00:00
|
|
|
using System;
|
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
2025-08-20 12:04:48 +00:00
|
|
|
using Volo.Abp.MultiTenancy;
|
2025-08-17 20:05:40 +00:00
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Entities;
|
|
|
|
|
|
2025-08-20 12:04:48 +00:00
|
|
|
public class Demo : FullAuditedEntity<Guid>, IMultiTenant
|
2025-08-17 20:05:40 +00:00
|
|
|
{
|
2025-08-20 12:04:48 +00:00
|
|
|
public Guid? TenantId { get; set; }
|
2025-10-07 11:19:12 +00:00
|
|
|
|
2025-08-17 20:05:40 +00:00
|
|
|
public string OrganizationName { get; set; }
|
|
|
|
|
public string FullName { get; set; }
|
|
|
|
|
public string Email { get; set; }
|
2025-11-03 20:31:28 +00:00
|
|
|
public long PhoneNumber { get; set; }
|
2025-08-17 20:05:40 +00:00
|
|
|
public string Address { get; set; }
|
|
|
|
|
public int NumberOfBranches { get; set; }
|
|
|
|
|
public int NumberOfUsers { get; set; }
|
|
|
|
|
public string Message { get; set; }
|
|
|
|
|
}
|