11 lines
202 B
C#
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; }
|
|
}
|
|
}
|