This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/Models/User.cs
2023-06-01 00:03:23 -04:00

16 lines
558 B
C#

namespace vassago.Models;
using System;
using System.Collections.Generic;
public class User //more like "user's account - no concept of the person outside of the protocol. (yet?)
{
public Guid Id { get; set; }
public ulong? ExternalId { get; set; }
public string DisplayName { get; set; }
public bool IsBot { get; set; } //webhook counts
public IEnumerable<Channel> SeenInChannels { get; set; }
public IEnumerable<User> KnownAliases { get; set; }
public Protocol Protocol { get; set; }
public string External { get; set; }
}