PIAPS_CW/Contracts/SearchModels/RoleSearchModel.cs
2024-06-20 04:17:46 +04:00

14 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class RoleSearchModel
{
public Guid? Id { get; set; }
public string? Name { get; set; }
}
}