7 lines
152 B
C#
7 lines
152 B
C#
namespace BeReadyBackend.DTO.Designations;
|
|
|
|
public class GetDesignationDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Label { get; set; }
|
|
} |