コード例 #1
0
ファイル: EventService.cs プロジェクト: PassiveModding/Raven
 public void SaveConfig(EventConfig config)
 {
     Database.Store(config, EventConfig.DocumentName(config.GuildId));
 }
コード例 #2
0
ファイル: EventService.cs プロジェクト: PassiveModding/Raven
 public EventConfig TryGetConfig(ulong guildId)
 {
     return(Database.Load <EventConfig>(EventConfig.DocumentName(guildId)));
 }