зеркало из https://github.com/DeGsoft/maui-linux.git
13 строки
309 B
C#
13 строки
309 B
C#
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 = "")
|
|
{
|
|
}
|
|
}
|
|
} |