Files
2026-05-21 16:04:49 +02:00

15 lines
353 B
C#

using System;
namespace DanieleMarotta.RiversongCodeShowcase
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class ServiceAttribute : Attribute
{
public ServiceAttribute(Type serviceType = null)
{
ServiceType = serviceType;
}
public Type ServiceType { get; set; }
}
}