erp-platform/api/src/Erp.Platform.Application.Contracts/Public/DemoDto.cs
2025-12-04 00:01:00 +03:00

17 lines
513 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Erp.Platform.Demos;
public class DemoDto : FullAuditedEntityDto<Guid>
{
public Guid? TenantId { get; set; }
public string OrganizationName { get; set; }
public string Name { get; set; }
public string Email { get; set; }
public string PhoneNumber { get; set; }
public string Address { get; set; }
public int NumberOfBranches { get; set; }
public int NumberOfUsers { get; set; }
public string Message { get; set; }
}