CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/SearchModels/RoleSearchModel.cs
Илья Федотов 2587d43871 Contracts 0.1
2024-04-27 13:01:57 +04:00

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;
}
}