11 lines
246 B
C#
11 lines
246 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BetterRaid.Models.Database;
|
|
|
|
[JsonObject]
|
|
public class BetterRaidDatabase
|
|
{
|
|
public bool OnlyOnline { get; set; }
|
|
public List<TwitchChannel> Channels { get; set; } = [];
|
|
} |