EL_Singature/Contracts/SearchModels/CertSearchModel.cs

10 lines
164 B
C#
Raw Normal View History

2023-05-19 21:46:44 +04:00
namespace Contracts.SearchModels
{
public class CertSearchModel
{
public int? Id;
public string? Name;
public string? Path;
public int? Key_Id;
}
}