using System.Collections.Generic; using System.Linq; namespace DiscordChatExporter.Core.Models { // https://discordapp.com/developers/docs/resources/guild#guild-member-object 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; } } }