12 lines
272 B
C#
12 lines
272 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using LeafWeb.Core.Entities;
|
|
|
|
namespace LeafWeb.WebCms.Models
|
|
{
|
|
public class SearchLeafInputDataViewModel
|
|
{
|
|
public IQueryable<LeafInputData> Results { get; set; }
|
|
public LeafDataQuery Q { get; set; }
|
|
}
|
|
} |