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/Message.cs

9 lines
182 B
C#

using System;
public abstract class Message
{
public Guid Id{get;set;}
public Guid InChannel{get;set;}
public string Content{get;set;}
public bool TagsMe{get;set;}
}