16 lines
304 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
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 14:04:23 +04:00
2023-03-06 17:15:03 +04:00
}
}