14 lines
490 B
C#
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; }
|
|
}
|