8 lines
268 B
C#
8 lines
268 B
C#
namespace Nebula.Shared.ViewHelper;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class ViewModelRegisterAttribute(Type? type = null, bool isSingleton = true) : Attribute
|
|
{
|
|
public Type? Type { get; } = type;
|
|
public bool IsSingleton { get; } = isSingleton;
|
|
} |