mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-15 23:13:40 +08:00
14 lines
272 B
C#
14 lines
272 B
C#
using OpenAuth.Repository.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace OpenAuth.Repository
|
|
{
|
|
public class BaseRepository
|
|
{
|
|
protected OpenAuthDBContext Context = new OpenAuthDBContext();
|
|
}
|
|
}
|