diff --git a/MSStore.API/Packaged/Models/BaseListing.cs b/MSStore.API/Packaged/Models/BaseListing.cs index 45c4a05..5474ffa 100644 --- a/MSStore.API/Packaged/Models/BaseListing.cs +++ b/MSStore.API/Packaged/Models/BaseListing.cs @@ -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; @@ -15,5 +15,11 @@ public class BaseListing public List? RecommendedHardware { get; set; } public List? MinimumHardware { get; set; } public string? Title { get; set; } + public string? LicenseTerms { get; set; } + public string? CopyrightAndTrademarkInfo { get; set; } + public string? ShortDescription { get; set; } + public string? ShortTitle { get; set; } + public string? VoiceTitle { get; set; } + public string? DevStudio { get; set; } } }