15 lines
327 B
C#
15 lines
327 B
C#
using Jiaowu.Api.Domain.Common;
|
|
|
|
namespace Jiaowu.Api.Domain.System;
|
|
|
|
public static class SystemFeatureKeys
|
|
{
|
|
public const string SwaggerDocumentation = "SwaggerDocumentation";
|
|
}
|
|
|
|
public sealed class SystemFeatureSetting : EntityBase
|
|
{
|
|
public required string Key { get; set; }
|
|
public bool IsEnabled { get; set; }
|
|
}
|