9 lines
181 B
C#
9 lines
181 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Microsoft.Maui.Platform;
|
||
|
|
|
||
|
|
public interface ISkiaQueryAttributable
|
||
|
|
{
|
||
|
|
void ApplyQueryAttributes(IDictionary<string, object> query);
|
||
|
|
}
|