mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
11 lines
330 B
C#
11 lines
330 B
C#
namespace Boyfriend.Data;
|
|
|
|
public class GuildData {
|
|
public readonly GuildConfiguration Configuration;
|
|
public readonly string ConfigurationPath;
|
|
|
|
public GuildData(GuildConfiguration configuration, string configurationPath) {
|
|
Configuration = configuration;
|
|
ConfigurationPath = configurationPath;
|
|
}
|
|
}
|