2024-07-06 21:20:10 +03:30
|
|
|
|
using Brizco.Domain.Entities.Complexes;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
2023-11-14 16:21:49 +03:30
|
|
|
|
|
|
|
|
|
|
public class PositionSDto : BaseDto<PositionSDto, Position>
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public Guid ComplexId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Guid SectionId { get; set; }
|
|
|
|
|
|
}
|