11 lines
280 B
C#
11 lines
280 B
C#
namespace antblazorpro.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; }
|
|
}
|
|
} |