2025-11-11 19:49:52 +00:00
|
|
|
|
using System;
|
2025-08-17 20:05:40 +00:00
|
|
|
|
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
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Platform.Entities;
|
2025-08-17 20:05:40 +00:00
|
|
|
|
|
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; }
|
2025-12-03 21:01:00 +00:00
|
|
|
|
public string Name { get; set; }
|
2025-08-17 20:05:40 +00:00
|
|
|
|
public string Email { get; set; }
|
2025-11-11 11:50:54 +00:00
|
|
|
|
public string 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; }
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|