BuildFeed/Models/ApiModel/SearchResult.cs

15 lines
336 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; }
2014-12-11 20:24:42 +08:00
public string Title { get; set; }
2014-11-28 03:34:20 +08:00
public string Group { get; set; }
}
}