16 lines
313 B
C#
16 lines
313 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ElectronicsShopContracts.SearchModels
|
|
{
|
|
public class RoleSearchModel
|
|
{
|
|
public int? ID { get; set; }
|
|
|
|
public string? Name { get; set; } = string.Empty;
|
|
}
|
|
}
|