mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
14 lines
294 B
C#
14 lines
294 B
C#
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; }
|
|
}
|
|
} |