Use stream_id to identify stream

This commit is contained in:
2023-07-31 14:08:54 +01:00
parent 99efab6013
commit 8e18029101
12 changed files with 359 additions and 20 deletions

View File

@ -7,4 +7,5 @@ public class StreamManagerContext
public StreamerContext Db { get; init; } = null!;
public UserStream UserStream { get; init; } = null!;
public User User => UserStream.User;
public StreamInfo? StreamInfo { get; init; }
}