namespace zero.Core.Entities
{
///
/// By default most entities are app aware and stored in their own database context.
/// Exceptions (like media) are stored in the core database and need to be marked as app aware
///
public interface IAppAwareEntity
{
///
/// Associated app id of the entity
///
string AppId { get; set; }
}
}