mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
16 lines
361 B
C#
16 lines
361 B
C#
using CompatBot.Database;
|
|
|
|
namespace CompatBot.Utils
|
|
{
|
|
internal static class BotDbExtensions
|
|
{
|
|
public static bool IsComplete(this EventSchedule evt)
|
|
{
|
|
return evt.Start > 0
|
|
&& evt.End > evt.Start
|
|
&& evt.Year > 0
|
|
&& !string.IsNullOrEmpty(evt.Name);
|
|
}
|
|
}
|
|
}
|