2020-06-06 00:14:42 -04:00
|
|
|
|
namespace BirdsiteLive.Common.Settings
|
2020-03-21 17:11:35 -04:00
|
|
|
|
{
|
|
|
|
|
public class InstanceSettings
|
|
|
|
|
{
|
2021-01-20 01:13:39 -05:00
|
|
|
|
public string Name { get; set; }
|
2020-03-21 17:11:35 -04:00
|
|
|
|
public string Domain { get; set; }
|
2020-07-08 18:41:47 -04:00
|
|
|
|
public string AdminEmail { get; set; }
|
2021-01-15 01:42:05 -05:00
|
|
|
|
public bool ResolveMentionsInProfiles { get; set; }
|
2020-03-21 17:11:35 -04:00
|
|
|
|
}
|
|
|
|
|
}
|