using System.Collections.Generic; using System.Linq; namespace DiscordChatExporter.Core.Models { public class Member { public string UserId { get; } public string? Nick { get; } public IReadOnlyList Roles { get; } public Member(string userId, string? nick, IReadOnlyList roles) { UserId = userId; Nick = nick; Roles = roles; } } }