초기커밋
This commit is contained in:
23
ServerBase/Redis/RedisRequestPrivateBase.cs
Normal file
23
ServerBase/Redis/RedisRequestPrivateBase.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
||||
|
||||
using ServerCore; using ServerBase;
|
||||
|
||||
|
||||
namespace ServerBase;
|
||||
|
||||
public abstract partial class RedisRequestPrivateBase : RedisRequestBase
|
||||
{
|
||||
private readonly IActor m_owner;
|
||||
|
||||
public RedisRequestPrivateBase(IActor entityBase, RedisConnector redisConnector)
|
||||
: base(redisConnector)
|
||||
{
|
||||
m_owner = entityBase;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user