erp-platform/api/src/Kurs.Platform.Application.Contracts/GlobalSearch/GlobalSearchResultDto.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

9 lines
232 B
C#

namespace Kurs.Platform.GlobalSearchs;
public class GlobalSearchResultDto
{
public string System { get; set; }
public string Group { get; set; }
public string Term { get; set; }
public string Url { get; set; }
}