22 lines
590 B
C#
Raw Normal View History

2023-03-06 17:15:03 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SecuritySystemContracts.SearchModels
{
2023-03-07 12:47:29 +04:00
<<<<<<< HEAD:SecuritySystemContracts/SearchModels/ComponentSearchModel.cs
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
=======
2023-03-07 12:47:29 +04:00
public class SecureSearchModel
2023-03-06 17:15:03 +04:00
{
public int? Id { get; set; }
2023-03-07 12:47:29 +04:00
public string? SecureName { get; set; }
2023-03-07 12:47:29 +04:00
>>>>>>> Rename:SecuritySystemContracts/SearchModels/SecureSearchModel.cs
2023-03-06 17:15:03 +04:00
}
}