13 lines
363 B
C#
13 lines
363 B
C#
namespace Brizco.Domain.Dtos.LargeDtos;
|
|
|
|
public class PositionLDto : BaseDto<PositionLDto, 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; }
|
|
public string SectionName { get; set; } = string.Empty;
|
|
} |