-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove extension manifest from upload result (#68)
- Loading branch information
1 parent
d66ab94
commit db5b32b
Showing
3 changed files
with
34 additions
and
29 deletions.
There are no files selected for viewing
24 changes: 12 additions & 12 deletions
24
src/ExtensionStoreAPI.Core/DataTypes/Response/ExtensionFileUploadResult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
using ExtensionStoreAPI.Core.DataTypes.MacroDeck; | ||
|
||
namespace ExtensionStoreAPI.Core.DataTypes.Response; | ||
|
||
public class ExtensionFileUploadResult | ||
{ | ||
public ExtensionManifest? ExtensionManifest { get; set; } | ||
public string? Readme { get; set; } | ||
public string? Description { get; set; } | ||
public string? PackageFileName { get; set; } | ||
public string? IconFileName { get; set; } | ||
public string? FileHash { get; set; } | ||
public string? LicenseName { get; set; } | ||
public string? LicenseUrl { get; set; } | ||
public string Name { get; set; } = string.Empty; | ||
public string Author { get; set; } = string.Empty; | ||
public string Repository { get; set; } = string.Empty; | ||
public string Description { get; set; } = string.Empty; | ||
public string PackageFileName { get; set; } = string.Empty; | ||
public string IconFileName { get; set; } = string.Empty; | ||
public string FileHash { get; set; } = string.Empty; | ||
public string LicenseName { get; set; } = string.Empty; | ||
public string LicenseUrl { get; set; } = string.Empty; | ||
public bool Success { get; set; } | ||
public bool NewPlugin { get; set; } | ||
public string? CurrentVersion { get; set; } | ||
public string? NewVersion { get; set; } | ||
public string CurrentVersion { get; set; } = string.Empty; | ||
public string NewVersion { get; set; } = string.Empty; | ||
public int MinApiVersion { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters