namespace BLWLogProduce.Models { public class RCUAnyDataComming : Grain, CommonEntity.IRCUDataComing { public readonly IPersistentState _state; public RCUAnyDataComming([PersistentState("anydata","redis-store")]IPersistentState state) { _state = state; } public ValueTask DataAccept() { throw new NotImplementedException(); } } }