Skip to content

Commit 417f38a

Browse files
authored
Merge pull request #90 from microsoft/user/kinangun/listings_update
Changed to update listings model to fix the listings update issue and…
2 parents 092200e + 439432c commit 417f38a

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

MSStore.API/Models/Listing.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

44
using System.Collections.Generic;
@@ -9,9 +9,15 @@ public class Listing
99
{
1010
public string? Language { get; set; }
1111
public string? Description { get; set; }
12+
public string? WhatsNew { get; set; }
1213
public List<string>? ProductFeatures { get; set; }
14+
public string? ShortDescription { get; set; }
1315
public List<string>? SearchTerms { get; set; }
1416
public string? AdditionalLicenseTerms { get; set; }
17+
public string? Copyright { get; set; }
18+
public string? DevelopedBy { get; set; }
1519
public List<SystemRequirementDetail>? Requirements { get; set; }
20+
public string? SortTitle { get; set; }
21+
public string? ContactInfo { get; set; }
1622
}
1723
}

MSStore.API/Models/UpdateMetadataRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

44
using System.Collections.Generic;
@@ -9,7 +9,7 @@ public class UpdateMetadataRequest
99
{
1010
public Availability? Availability { get; set; }
1111
public Properties? Properties { get; set; }
12-
public List<Listing>? Listings { get; set; }
12+
public Listing? Listings { get; set; }
1313
public List<string>? ListingsToAdd { get; set; }
1414
public List<string>? ListingsToRemove { get; set; }
1515
}

0 commit comments

Comments
 (0)