17 lines
513 B
C#
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; }
|
|
}
|