cloutier--bird.makeup/src/BirdsiteLive.Common/Settings/InstanceSettings.cs

12 lines
381 B
C#
Raw Normal View History

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; }
public bool ResolveMentionsInProfiles { get; set; }
2021-01-22 18:31:30 -05:00
public bool PublishReplies { get; set; }
2021-01-22 19:44:47 -05:00
public int MaxUsersCapacity { get; set; }
2020-03-21 17:11:35 -04:00
}
}