7 lines
179 B
C#
7 lines
179 B
C#
namespace System.Runtime.CompilerServices {
|
|
public interface IUnion { }
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class UnionAttribute : Attribute { }
|
|
}
|