11 lines
229 B
C#
11 lines
229 B
C#
using System.Collections.Generic;
|
|
using LeafWeb.Core.Entities;
|
|
|
|
namespace LeafWeb.WebCms.Models
|
|
{
|
|
public class SearchViewModel
|
|
{
|
|
public IEnumerable<LeafInput> Items { get; set; }
|
|
public LeafDataQuery Q { get; set; }
|
|
}
|
|
} |