Files
SharepointToolbox-Web/Core/Models/SearchResult.cs
T
2026-06-02 10:56:03 +02:00

14 lines
490 B
C#

namespace SharepointToolbox.Web.Core.Models;
public class SearchResult
{
public string Title { get; set; } = string.Empty;
public string Path { get; set; } = string.Empty;
public string FileExtension { get; set; } = string.Empty;
public DateTime? Created { get; set; }
public DateTime? LastModified { get; set; }
public string Author { get; set; } = string.Empty;
public string ModifiedBy { get; set; } = string.Empty;
public long SizeBytes { get; set; }
}