mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
9 lines
182 B
C#
9 lines
182 B
C#
using Remora.Rest.Core;
|
|
|
|
namespace Boyfriend.Data;
|
|
|
|
public struct Reminder {
|
|
public DateTimeOffset RemindAt;
|
|
public string Text;
|
|
public Snowflake Channel;
|
|
}
|