Added Discord Bot
This commit is contained in:
parent
e7a0c9ae68
commit
e445b2a181
48 changed files with 1255 additions and 157 deletions
19
SharedClasses/SharedModels/ApiReminder.cs
Normal file
19
SharedClasses/SharedModels/ApiReminder.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
|
||||
namespace SharedClasses.SharedModels
|
||||
{
|
||||
public class ApiUserReminder
|
||||
{
|
||||
public string Message { get; set; }
|
||||
|
||||
public List<ulong> UserIds {get; set;} = new List<ulong>();
|
||||
}
|
||||
|
||||
public class ApiChannelReminder
|
||||
{
|
||||
public string Message { get; set; }
|
||||
|
||||
public ulong DiscordServerId { get; set; }
|
||||
|
||||
public ulong DiscordChannelId { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue