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

17 lines
279 B
C#

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