ZrAdminNetCore/ZR.Model/MainDbAttribute.cs
2025-11-15 13:51:09 +08:00

10 lines
191 B
C#

namespace ZR.Model
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class MainDbAttribute : Attribute
{
}
public interface IMainDbEntity { }
}