Result Model
Fields
Name
Type
Description
Example:
namespace Library.Model;
public struct ResultModel
{
// The number of results
public int Count { get; set; }
// The total number of files processed
public int NumberOfFiles { get; set; }
// The time it took to compile results
public TimeSpan Duration { get; set; }
// The file extensions processed
public FileModel[] Items { get; set; }
}ToString
Last updated