mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
10 lines
244 B
C#
10 lines
244 B
C#
namespace BuildFeed.Model.Api
|
|
{
|
|
public class SearchResult
|
|
{
|
|
public string Group { get; set; }
|
|
public string Label { get; set; }
|
|
public string Title { get; set; }
|
|
public string Url { get; set; }
|
|
}
|
|
} |