File: IWrappedValue.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable enable
using System;
 
namespace Microsoft.Maui.Controls
{
	internal interface IWrappedValue
	{
		object? Value { get; }
		Type ValueType { get; }
	}
}