2025-10-21 13:38:23 +08:00

10 lines
193 B
C#

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