Files
mixtape/zero.Core/Attributes/MapAppIdAttribute.cs
T
2020-03-24 23:09:29 +01:00

14 lines
368 B
C#

using System;
namespace zero.Core.Attributes
{
/// <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() { }
}
}