forked from kendarorg/RepositoryCache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueryEntity.cs
More file actions
50 lines (47 loc) · 1.66 KB
/
QueryEntity.cs
File metadata and controls
50 lines (47 loc) · 1.66 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
49
50
using Repositories;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Nuget.Repositories
{
public class QueryEntity : BaseEntity
{
public Guid RepositoryId { get; set; }
public string FreeText { get; set; }
public string PackageId { get; set; }
public string Version { get; set; }
public string PreVersion { get; set; }
public string Title { get; set; }
public string Tags { get; set; }
public string Author { get; set; }
public string Description { get; set; }
public string Summary { get; set; }
public string Owner { get; set; }
public bool HasRelease { get; set; }
public bool HasPreRelease { get; set; }
public Guid CommitId { get; set; }
public DateTime CommitTimestamp { get; set; }
public string IconUrl { get; set; }
public string LicenseUrl { get; set; }
public string ProjectUrl { get; set; }
public bool Verified { get; set; }
public bool Listed { get; set; }
public bool PreListed { get; set; }
public long TotalDownloads { get; set; }
public string PreCsvVersions { get; set; }
public string CsvVersions { get; set; }
/*
public int Major { get; set; }
public int Minor { get; set; }
public int Patch { get; set; }
public string PreRelease { get; set; }
public string BuildMetadata { get; set; }
public int PreMajor { get; set; }
public int PreMinor { get; set; }
public int PrePatch { get; set; }
public string PrePreRelease { get; set; }
public string PreBuildMetadata { get; set; }*/
}
}