2024-08-11 19:20:09 +03:30
|
|
|
|
namespace Brizco.Domain.Dtos.LargeDtos;
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
|
|
|
|
|
public class ComplexLDto : BaseDto<ComplexLDto,Complex>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
public string Address { get; set; } = string.Empty;
|
|
|
|
|
|
public string SupportPhone { get; set; } = string.Empty;
|
|
|
|
|
|
public List<ComplexUserSDto> Users { get; set; } = new();
|
|
|
|
|
|
}
|