mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 14:06:11 +08:00
11 lines
285 B
C#
11 lines
285 B
C#
namespace Xzy.KnowledgeBase.Models
|
|
{
|
|
public class SearchDataItem
|
|
{
|
|
public int Index { get; set; }
|
|
public string Keywod { get; set; }
|
|
public int Count { get; set; }
|
|
public int Range { get; set; }
|
|
public int Status { get; set; }
|
|
}
|
|
} |