add bugsnag error reporting (#665)

This commit is contained in:
Jason Dove
2022-03-01 18:41:24 -06:00
committed by GitHub
parent ea72e7b689
commit 9e2f445785
5 changed files with 35 additions and 0 deletions
@@ -0,0 +1,7 @@
namespace ErsatzTV.Core.Errors;
public class BugsnagConfiguration
{
public string ApiKey { get; set; }
public bool Enable { get; set; }
}