|
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;
|
|
|
|
} |