Files
mixtape/zero.Core/Entities/InheritAttribute.cs
T
2020-09-17 16:10:21 +02:00

19 lines
268 B
C#

using System;
namespace zero.Core.Entities
{
public class OverwriteAttribute : Attribute
{
}
public class ReferenceAttribute : Attribute
{
public Type Type { get; set; }
public ReferenceAttribute(Type type)
{
Type = type;
}
}
}