summary refs log tree commit diff
path: root/MatrixLogFwd/Config.cs
blob: 547292eca902b5c37e5cce36768a23e0df885f97 (plain) (blame)
1
2
3
4
5
6
7
namespace MatrixLogFwd;

public class Config
{
    public string HomeserverBaseUrl { get; set; } = "https://matrix.org";
    public string AccessToken { get; set; } = "";
}