Api/Brizco.Domain/Dtos/SmallDtos/ComplexSDto.cs

9 lines
275 B
C#
Raw Normal View History

2024-08-11 19:20:09 +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;
}