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

Il8nAttribute.cs « Metadata « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e72692411ef53e130d760f56d825d3db8b8aca1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Metadata {
	[AttributeUsage (AttributeTargets.Class)]
	public sealed class Il8nAttribute : BaseMetadataAttribute {
		public readonly string Value;

		public Il8nAttribute (string value)
		{
			Value = value;
		}
	}
}