Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion MSStore.API/Models/Listing.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using System.Collections.Generic;
Expand All @@ -9,9 +9,15 @@ public class Listing
{
public string? Language { get; set; }
public string? Description { get; set; }
public string? WhatsNew { get; set; }
public List<string>? ProductFeatures { get; set; }
public string? ShortDescription { get; set; }
public List<string>? SearchTerms { get; set; }
public string? AdditionalLicenseTerms { get; set; }
public string? Copyright { get; set; }
public string? DevelopedBy { get; set; }
public List<SystemRequirementDetail>? Requirements { get; set; }
public string? SortTitle { get; set; }
public string? ContactInfo { get; set; }
}
}
4 changes: 2 additions & 2 deletions MSStore.API/Models/UpdateMetadataRequest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using System.Collections.Generic;
Expand All @@ -9,7 +9,7 @@ public class UpdateMetadataRequest
{
public Availability? Availability { get; set; }
public Properties? Properties { get; set; }
public List<Listing>? Listings { get; set; }
public Listing? Listings { get; set; }
public List<string>? ListingsToAdd { get; set; }
public List<string>? ListingsToRemove { get; set; }
}
Expand Down
Loading