Orlean (#32)
* Start building with orlean * Add missing file * Serialize grain state * Remove grain and proxies * update and add plan * Update a bit * Fix backtest grain * Fix backtest grain * Clean a bit
This commit is contained in:
@@ -1,12 +1,23 @@
|
||||
using Managing.Domain.Accounts;
|
||||
using Orleans;
|
||||
|
||||
namespace Managing.Domain.Users;
|
||||
|
||||
[GenerateSerializer]
|
||||
public class User
|
||||
{
|
||||
[Id(0)]
|
||||
public string Name { get; set; }
|
||||
|
||||
[Id(1)]
|
||||
public List<Account> Accounts { get; set; }
|
||||
|
||||
[Id(2)]
|
||||
public string AgentName { get; set; }
|
||||
|
||||
[Id(3)]
|
||||
public string AvatarUrl { get; set; }
|
||||
|
||||
[Id(4)]
|
||||
public string TelegramChannel { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user