2020-05-09 11:42:45 +02:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace zero.Core.Entities
|
|
|
|
|
{
|
2020-09-17 13:08:16 +02:00
|
|
|
public class OverwriteAttribute : Attribute
|
2020-05-09 11:42:45 +02:00
|
|
|
{
|
|
|
|
|
}
|
2020-09-17 16:10:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
public class ReferenceAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
public Type Type { get; set; }
|
|
|
|
|
|
|
|
|
|
public ReferenceAttribute(Type type)
|
|
|
|
|
{
|
|
|
|
|
Type = type;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-09 11:42:45 +02:00
|
|
|
}
|