mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
17 lines
380 B
C#
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;
|
|
}
|
|
} |