summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml/XamlFilePathAttribute.cs
blob: 7a6d665b30695b71aa170a3bbf16d3a3f270ec67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Runtime.CompilerServices;

namespace Xamarin.Forms.Xaml
{
	[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
	public sealed class XamlFilePathAttribute : Attribute
	{
		public XamlFilePathAttribute([CallerFilePath] string filePath = "")
		{
		}
	}
}