9 lines
176 B
C#
9 lines
176 B
C#
namespace Project.Application.DTOs.Outgoing
|
|
{
|
|
public class ReadingCategoryDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|