Welcome to mirror list, hosted at ThFree Co, Russian Federation.

KeptInterfaceAttribute.cs « Assertions « Mono.Linker.Tests.Cases.Expectations « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5014bd23a36ed8e92eb277b867972c9b1a94451f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Diagnostics;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	[AttributeUsage (AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
	public class KeptInterfaceAttribute : KeptAttribute
	{
		public readonly Type InterfaceType;

		public KeptInterfaceAttribute (Type interfaceType)
		{
			InterfaceType = interfaceType;
		}
	}
}