9 lines
204 B
C#
9 lines
204 B
C#
namespace PyroFetes.DTO.ExperienceLevel.Response;
|
|
|
|
public class GetExperienceLevelDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Label { get; set; }
|
|
|
|
public int? StaffId { get; set; }
|
|
} |