using System.Collections.Generic; namespace Ombi.Hubs; public class NotificationHubUser { public string UserId { get; set; } public IList Roles { get; init; } = new List(); }