16 lines
256 B
C#
16 lines
256 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.SearchModels
|
|||
|
{
|
|||
|
public class KeySearchModel
|
|||
|
{
|
|||
|
public int? Id;
|
|||
|
public string? Name;
|
|||
|
public string? Path;
|
|||
|
}
|
|||
|
}
|