Skip to content

Commit

Permalink
Merge pull request #3738 from KoenZomers/FixBuildWarnings
Browse files Browse the repository at this point in the history
Fixed build warnings
  • Loading branch information
KoenZomers authored Feb 9, 2024
2 parents 45d38ee + b653518 commit 8c86c7a
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 85 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,43 +13,43 @@ public class PowerPlatformSolution
/// Etag for the solution
/// </summary>
[JsonPropertyName("@odata.etag")]
public string? ODataEtag { get; set; }
public string ODataEtag { get; set; }

/// <summary>
/// Date and time when the solution was installed
/// </summary>
[JsonPropertyName("installedon")]
public string? InstalledOn { get; set; }
public string InstalledOn { get; set; }

/// <summary>
/// Version of the solution package
/// </summary>
[JsonPropertyName("solutionpackageversion")]
public string? SolutionPackageVersion { get; set; }
public string SolutionPackageVersion { get; set; }

/// <summary>
/// Configuration page ID (null in this case)
/// </summary>
[JsonPropertyName("_configurationpageid_value")]
public string? ConfigurationPageId { get; set; }
public string ConfigurationPageId { get; set; }

/// <summary>
/// ID of the solution
/// </summary>
[JsonPropertyName("solutionid")]
public string? SolutionId { get; set; }
public string SolutionId { get; set; }

/// <summary>
/// Date and time when the solution was last modified
/// </summary>
[JsonPropertyName("modifiedon")]
public string? ModifiedOn { get; set; }
public string ModifiedOn { get; set; }

/// <summary>
/// Unique name of the solution
/// </summary>
[JsonPropertyName("uniquename")]
public string? UniqueName { get; set; }
public string UniqueName { get; set; }

/// <summary>
/// Indicates if the solution is managed by API
Expand All @@ -61,7 +61,7 @@ public class PowerPlatformSolution
/// Publisher ID (null in this case)
/// </summary>
[JsonPropertyName("_publisherid_value")]
public string? PublisherIdValue { get; set; }
public string PublisherIdValue { get; set; }

/// <summary>
/// Indicates if the solution is managed
Expand All @@ -79,55 +79,55 @@ public class PowerPlatformSolution
/// Thumbprint (null in this case)
/// </summary>
[JsonPropertyName("thumbprint")]
public string? Thumbprint { get; set; }
public string Thumbprint { get; set; }

/// <summary>
/// Pinpoint publisher ID (null in this case)
/// </summary>
[JsonPropertyName("pinpointpublisherid")]
public string? PinpointPublisherId { get; set; }
public string PinpointPublisherId { get; set; }

/// <summary>
/// Version of the solution
/// </summary>
[JsonPropertyName("version")]
public string? Version { get; set; }
public string Version { get; set; }

/// <summary>
/// Modified on behalf by value (null in this case)
/// </summary>
[JsonPropertyName("_modifiedonbehalfby_value")]
public string? ModifiedOnBehalfByValue { get; set; }
public string ModifiedOnBehalfByValue { get; set; }

/// <summary>
/// Parent solution ID value (null in this case)
/// </summary>
[JsonPropertyName("_parentsolutionid_value")]
public string? ParentSolutionIdValue { get; set; }
public string ParentSolutionIdValue { get; set; }

/// <summary>
/// Pinpoint asset ID (null in this case)
/// </summary>
[JsonPropertyName("pinpointassetid")]
public string? PinpointAssetId { get; set; }
public string PinpointAssetId { get; set; }

/// <summary>
/// Pinpoint solution ID (null in this case)
/// </summary>
[JsonPropertyName("pinpointsolutionid")]
public string? PinpointSolutionId { get; set; }
public string PinpointSolutionId { get; set; }

/// <summary>
/// Friendly name of the solution
/// </summary>
[JsonPropertyName("friendlyname")]
public string? FriendlyName { get; set; }
public string FriendlyName { get; set; }

/// <summary>
/// Organization ID value
/// </summary>
[JsonPropertyName("_organizationid_value")]
public string? OrganizationIdValue { get; set; }
public string OrganizationIdValue { get; set; }

/// <summary>
/// Version number
Expand All @@ -139,43 +139,43 @@ public class PowerPlatformSolution
/// Template suffix (null in this case)
/// </summary>
[JsonPropertyName("templatesuffix")]
public string? TemplateSuffix { get; set; }
public string TemplateSuffix { get; set; }

/// <summary>
/// Upgrade information (null in this case)
/// </summary>
[JsonPropertyName("upgradeinfo")]
public string? UpgradeInfo { get; set; }
public string UpgradeInfo { get; set; }

/// <summary>
/// Created on behalf by value (null in this case)
/// </summary>
[JsonPropertyName("_createdonbehalfby_value")]
public string? CreatedOnBehalfByValue { get; set; }
public string CreatedOnBehalfByValue { get; set; }

/// <summary>
/// Modified by value
/// </summary>
[JsonPropertyName("_modifiedby_value")]
public string? ModifiedByValue { get; set; }
public string ModifiedByValue { get; set; }

/// <summary>
/// Date and time when the solution was created
/// </summary>
[JsonPropertyName("createdon")]
public string? CreatedOn { get; set; }
public string CreatedOn { get; set; }

/// <summary>
/// Date and time when the solution was last updated (null in this case)
/// </summary>
[JsonPropertyName("updatedon")]
public string? UpdatedOn { get; set; }
public string UpdatedOn { get; set; }

/// <summary>
/// Description of the solution (null in this case)
/// </summary>
[JsonPropertyName("description")]
public string? Description { get; set; }
public string Description { get; set; }

/// <summary>
/// Solution type (null in this case)
Expand All @@ -187,13 +187,13 @@ public class PowerPlatformSolution
/// Pinpoint solution default locale (null in this case)
/// </summary>
[JsonPropertyName("pinpointsolutiondefaultlocale")]
public string? PinpointSolutionDefaultLocale { get; set; }
public string PinpointSolutionDefaultLocale { get; set; }

/// <summary>
/// Created by value
/// </summary>
[JsonPropertyName("_createdby_value")]
public string? CreatedByValue { get; set; }
public string CreatedByValue { get; set; }

/// <summary>
/// Publisher information
Expand Down
Loading

0 comments on commit 8c86c7a

Please sign in to comment.