SUBD/Forum/ForumContracts/SearchModels/RoleSearchModel.cs

15 lines
286 B
C#
Raw Normal View History

2023-04-28 19:41:32 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ForumContracts.SearchModels
{
public class RoleSearchModel
{
public int? Id { get; set; }
2023-04-28 19:41:32 +04:00
public string? Name { get; set; }
}
}