mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-10 15:48:01 +08:00
13 lines
255 B
C#
13 lines
255 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace OpenAuth.Infrastructure.Repository
|
|
{
|
|
public class BaseRepository
|
|
{
|
|
protected OpenAuthDBContext _Context = new OpenAuthDBContext();
|
|
}
|
|
}
|