Files
riversong-code-showcase/Source/Engine/Core/Attributes/InjectServiceAttribute.cs
2026-05-21 16:04:49 +02:00

15 lines
343 B
C#

using System;
namespace DanieleMarotta.RiversongCodeShowcase
{
[AttributeUsage(AttributeTargets.Field)]
public class InjectServiceAttribute : Attribute
{
public InjectServiceAttribute(Type serviceType = null)
{
ServiceType = serviceType;
}
public Type ServiceType { get; set; }
}
}