summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IStyle.cs
blob: cdb998dc4bfc7275ca81d05c7c0744466a66187d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Xamarin.Forms
{
	internal interface IStyle
	{
		Type TargetType { get; }

		void Apply(BindableObject bindable);
		void UnApply(BindableObject bindable);
	}
}