10 lines
193 B
C#
10 lines
193 B
C#
|
|
namespace RIZO.Model
|
|||
|
|
{
|
|||
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
|||
|
|
public class MainDbAttribute : Attribute
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public interface IMainDbEntity { }
|
|||
|
|
}
|