9 lines
166 B
C#
9 lines
166 B
C#
using Common.Dtos.Common;
|
|
|
|
namespace Common.Dtos.Specialization;
|
|
|
|
public class GetSpecializationsRequest : PagedRequest
|
|
{
|
|
public string? Name { get; set; }
|
|
}
|