Publisher features flags APIs

This commit is contained in:
2025-06-28 20:56:53 +08:00
parent 933d762f24
commit a5dae37525
2 changed files with 88 additions and 0 deletions

View File

@ -95,3 +95,9 @@ public class PublisherFeature : ModelBase
public Guid PublisherId { get; set; }
public Publisher Publisher { get; set; } = null!;
}
public abstract class PublisherFeatureFlag
{
public static List<string> AllFlags => [Developer];
public static string Developer = "develop";
}