Files
mixtape/zero.Core/Entities/IAppAwareEntity.cs
T

11 lines
202 B
C#

namespace zero.Core.Entities
{
public interface IAppAwareEntity
{
/// <summary>
/// Id of the associated application (auto-filled)
/// </summary>
string AppId { get; set; }
}
}