9 lines
186 B
C#
Raw Permalink Normal View History

namespace SecuritySystemContracts.SearchModels
{
public class SecureSearchModel
{
public int? Id { get; set; }
public string? SecureName { get; set; }
}
}