8 lines
183 B
C#
8 lines
183 B
C#
|
|
namespace Meezi.Core.Entities;
|
||
|
|
|
||
|
|
public class CafeFeatureOverride : TenantEntity
|
||
|
|
{
|
||
|
|
public string FeatureKey { get; set; } = string.Empty;
|
||
|
|
public bool IsEnabled { get; set; }
|
||
|
|
}
|