2024-07-06 21:20:10 +03:30
|
|
|
|
using Brizco.Domain.Entities.Complexes;
|
2023-09-18 09:45:02 +03:30
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class ComplexSDto : BaseDto<ComplexSDto, Complex>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
public string Address { get; set; } = string.Empty;
|
|
|
|
|
|
public string SupportPhone { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
}
|