Files
nadekobot/src/NadekoBot/Modules/Searches/_Common/StreamNotifications/Models/StreamDataKey.cs

17 lines
380 B
C#

#nullable disable
using NadekoBot.Db.Models;
using System.Text.Json.Serialization;
namespace NadekoBot.Modules.Searches.Common;
public readonly struct StreamDataKey
{
public FollowedStream.FType Type { get; init; }
public string Name { get; init; }
public StreamDataKey(FollowedStream.FType type, string name)
{
Type = type;
Name = name;
}
}