9 lines
335 B
C#
9 lines
335 B
C#
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();
|
|
} |