chatRooms

This commit is contained in:
Paul Schneider 2018-01-02 16:35:03 +01:00
commit 871cf6b884
42 changed files with 15345 additions and 225 deletions

View file

@ -0,0 +1,9 @@
using Microsoft.AspNet.Authorization;
namespace Yavsc.ViewModels.Auth
{
public class ModerationRequirement : IAuthorizationRequirement
{
public ModerationRequirement() {}
}
}

View file

@ -5,7 +5,7 @@ namespace Yavsc.ViewModels.Chat { 
public class ChatUserInfo : IChatUserInfo
{
public List<Connection> Connections { get; set; }
public List<ChatConnection> Connections { get; set; }
public string UserId { get; set; }
@ -19,7 +19,7 @@ public class ChatUserInfo : IChatUserInfo
public interface IChatUserInfo
{
List<Connection> Connections { get; set; }
List<ChatConnection> Connections { get; set; }
string UserId { get; set; }
string UserName { get; set; }