16 lines
332 B
C#
16 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serwer.Infrastructure.DTO
|
|
{
|
|
public class SearchResultDTO
|
|
{
|
|
public string Title { get; set; }
|
|
public string Link { get; set; }
|
|
public string Snippet { get; set; }
|
|
}
|
|
}
|