CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/SearchModels/RoleSearchModel.cs

16 lines
313 B
C#
Raw Normal View History

2024-04-27 13:01:57 +04:00
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;
}
}