Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Roles/RoleQueryParameters.cs

22 lines
453 B
C#
Raw Normal View History

2024-10-06 00:43:09 +02:00
using Microsoft.AspNetCore.Mvc;
using WatchIt.Common.Query;
namespace WatchIt.Common.Model.Roles;
public class RoleQueryParameters : QueryParameters<RoleResponse>
{
#region PROPERTIES
[FromQuery(Name = "name")]
public string? Name { get; set; }
#endregion
#region PRIVATE METHODS
protected override bool IsMeetingConditions(RoleResponse item) => TestStringWithRegex(item.Name, Name);
#endregion
}