chatRooms

This commit is contained in:
2018-01-02 16:35:03 +01:00
parent 176952d30f
commit 5b372b127d
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; }