forked from sanchezvem/PyroFetes
8 lines
157 B
C#
8 lines
157 B
C#
namespace API.DTO.Classification.Response;
|
|
|
|
public class GetClassificationDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Label { get; set; }
|
|
|
|
} |