10 lines
193 B
C#
Raw Normal View History

2025-10-21 13:38:23 +08:00
namespace RIZO.Model
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class MainDbAttribute : Attribute
{
}
public interface IMainDbEntity { }
}