summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/ExportRendererHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/ExportRendererHandler.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/ExportRendererHandler.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/ExportRendererHandler.cs b/Xamarin.Forms.Platform.Tizen/ExportRendererHandler.cs
new file mode 100644
index 00000000..dc6a3ae6
--- /dev/null
+++ b/Xamarin.Forms.Platform.Tizen/ExportRendererHandler.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace Xamarin.Forms.Platform.Tizen
+{
+ [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
+ public sealed class ExportHandlerAttribute : HandlerAttribute
+ {
+ public ExportHandlerAttribute(Type handler, Type target) : base(handler, target)
+ {
+ }
+ }
+} \ No newline at end of file