This repository has been archived on 2024-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
BetterRaid_OLD/Models/TwitchChannel.cs

14 lines
308 B
C#

namespace BetterRaid.Models;
public class TwitchChannel
{
public string? BroadcasterId { get; set; }
public string Name { get; set; }
public bool IsLive { get; set; }
public int ViewerCount { get; set; }
public TwitchChannel(string channelName)
{
Name = channelName;
}
}