forked from chocolatey/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChocolateyTestPackageSearchMetadata.cs
More file actions
48 lines (43 loc) · 2.1 KB
/
ChocolateyTestPackageSearchMetadata.cs
File metadata and controls
48 lines (43 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright (c) 2022-Present Chocolatey Software, Inc.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
//////////////////////////////////////////////////////////
// Chocolatey Specific Modification
//////////////////////////////////////////////////////////
using System;
using System.Collections.Generic;
using NuGet.Protocol.Core.Types;
namespace NuGet.PackageManagement.UI.Test
{
partial class TestPackageSearchMetadata : IPackageSearchMetadata
{
public string PackageHash { get; set; }
public string PackageHashAlgorithm { get; set; }
public long? PackageSize { get; set; }
public int? VersionDownloadCount { get; set; }
public bool IsApproved { get; set; }
public string PackageStatus { get; set; }
public string PackageSubmittedStatus { get; set; }
public string PackageTestResultStatus { get; set; }
public DateTime? PackageTestResultStatusDate { get; set; }
public string PackageValidationResultStatus { get; set; }
public DateTime? PackageValidationResultDate { get; set; }
public DateTime? PackageCleanupResultDate { get; set; }
public DateTime? PackageReviewedDate { get; set; }
public DateTime? PackageApprovedDate { get; set; }
public string PackageReviewer { get; set; }
public bool IsDownloadCacheAvailable { get; set; }
public DateTime? DownloadCacheDate { get; set; }
public IEnumerable<DownloadCache> DownloadCache { get; set; }
public string ReleaseNotes { get; set; }
public Uri ProjectSourceUrl { get; set; }
public Uri PackageSourceUrl { get; set; }
public Uri DocsUrl { get; set; }
public Uri MailingListUrl { get; set; }
public Uri BugTrackerUrl { get; set; }
public string DownloadCacheStatus { get; set; }
public string PackageScanStatus { get; set; }
public DateTime? PackageScanResultDate { get; set; }
public string PackageScanFlagResult { get; set; }
public string AvailableVersionSource { get; set; }
}
}