14 lines
382 B
C#
14 lines
382 B
C#
using Core;
|
|
using Generator.DataSource.Settings;
|
|
|
|
namespace Generator.Daos;
|
|
|
|
public class EnvironmentDao : AbstractDao
|
|
{
|
|
public Location ApiFolder() => new ([_confManager.GetBase().LocalRoot, _confManager.GetGeneral().ApiFolder]);
|
|
|
|
public string Invite => _confManager.GetBase().Invite;
|
|
|
|
public EnvironmentDao(ConfigManager confManager) : base(confManager)
|
|
{ }
|
|
} |