Files
mixtape/zero.Core/Models/IAlwaysActive.cs
T
2021-12-29 01:25:35 +01:00

12 lines
280 B
C#

namespace zero.Models;
/// <summary>
/// Entities decorated with this interface are always set to IsActive=true
/// </summary>
public interface IAlwaysActive
{
/// <summary>
/// Whether the entity is visible in the frontend
/// </summary>
bool IsActive { get; set; }
}