You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets the package affected by this deprecation.
23
+
/// </summary>
24
+
publicvirtualPackagePackage{get;set;}
25
+
26
+
/// <summary>
27
+
/// Gets or sets the key of the package affected by this deprecation.
28
+
/// </summary>
29
+
[Index(IsUnique=true)]
30
+
publicintPackageKey{get;set;}
31
+
32
+
/// <summary>
33
+
/// Gets or sets the status of this deprecation.
34
+
/// </summary>
35
+
/// <remarks>
36
+
/// A <see cref="PackageDeprecation"/> with a <see cref="PackageDeprecationStatus"/> of <see cref="PackageDeprecationStatus.NotDeprecated"/> is meaningless, so <see cref="Status"/> must be at least <c>1</c>.
37
+
/// </remarks>
38
+
[Range(1,int.MaxValue)]
39
+
publicPackageDeprecationStatusStatus{get;set;}
40
+
41
+
/// <summary>
42
+
/// Gets or sets the alternate package registration entity.
43
+
/// It is recommended that users use this package registration instead of the deprecated package.
0 commit comments