2020-03-23 11:57:07 +01:00
|
|
|
using System;
|
|
|
|
|
|
2020-03-24 23:09:29 +01:00
|
|
|
namespace zero.Core.Attributes
|
2020-03-23 11:57:07 +01:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This attribute automatically inserts the current application id into this property (has to be a string) on entity save
|
|
|
|
|
/// </summary>
|
|
|
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
|
|
|
|
|
public class MapAppIdAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
public MapAppIdAttribute() { }
|
|
|
|
|
}
|
|
|
|
|
}
|