-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLibraryReadMeContext.cs
34 lines (19 loc) · 957 Bytes
/
LibraryReadMeContext.cs
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
namespace ThirdPartyLibraries.Repository.Template;
public sealed class LibraryReadMeContext
{
public string Name { get; set; } = null!;
public string Version { get; set; } = null!;
public string? Description { get; set; }
public string HRef { get; set; } = null!;
public string? LicenseCode { get; set; }
public string? LicenseLocalHRef { get; set; }
public string? LicenseMarkdownExpression { get; set; }
public string? LicenseDescription { get; set; }
public string UsedBy { get; set; } = null!;
public IList<LibraryLicense> Licenses { get; } = new List<LibraryLicense>();
public string? TargetFrameworks { get; set; }
public int DependenciesCount => Dependencies.Count;
public IList<LibraryReadMeDependencyContext> Dependencies { get; } = new List<LibraryReadMeDependencyContext>();
public string? Remarks { get; set; }
public string? ThirdPartyNotices { get; set; }
}