BuildFeed/Models/ApiModel/SearchResult.cs

14 lines
294 B
C#
Raw Normal View History

2014-11-28 03:34:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace BuildFeed.Models.ApiModel
{
public class SearchResult
{
public string Url { get; set; }
public string Label { get; set; }
public string Group { get; set; }
}
}