Microsoft.Identity.Client.Platforms.net.JsonObjectAttribute
Dummy class to mimic Microsoft.Identity.Json.JsonObjectAttribute on .NET platform to reduce the number of compilation flags in the code
namespace Microsoft.Identity.Client.Platforms.net
{
internal class JsonObjectAttribute : Attribute
{
public string Title { get; set; }
public JsonObjectAttribute();
}
}