PIAPS_CW/Contracts/SearchModels/RoleSearchModel.cs

14 lines
281 B
C#
Raw Normal View History

2024-06-04 11:57:28 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
2024-06-20 04:17:46 +04:00
public class RoleSearchModel
{
public Guid? Id { get; set; }
public string? Name { get; set; }
}
2024-06-04 11:57:28 +04:00
}