2020-05-09 20:05:08 +02:00
|
|
|
namespace zero.Core.Entities
|
|
|
|
|
{
|
|
|
|
|
public interface IAppAwareEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Id of the associated application (auto-filled)
|
|
|
|
|
/// </summary>
|
|
|
|
|
string AppId { get; set; }
|
|
|
|
|
}
|
2020-06-03 12:57:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
public interface IAppAwareShareableEntity : IAppAwareEntity
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2020-05-09 20:05:08 +02:00
|
|
|
}
|