mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
14 lines
412 B
C#
14 lines
412 B
C#
using System;
|
|
|
|
namespace Cosmos.Kernel.Boot.Glue {
|
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
|
|
public sealed class KernelResourceAttribute: Attribute {
|
|
public readonly string ResourceName;
|
|
public readonly int Identifier;
|
|
|
|
public KernelResourceAttribute(string aResourceName, int aIdentifier) {
|
|
ResourceName = aResourceName;
|
|
Identifier = aIdentifier;
|
|
}
|
|
}
|
|
}
|