Files
mixtape/zero.Core/Attributes/MapAppIdAttribute.cs
T

14 lines
368 B
C#
Raw Normal View History

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() { }
}
}