11 lines
376 B
C#
11 lines
376 B
C#
using Brizco.Domain.Entities.Complexes;
|
|
|
|
namespace Brizco.Domain.Dtos.LargeDtos;
|
|
|
|
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();
|
|
} |