mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
9 lines
225 B
C#
9 lines
225 B
C#
using NadekoBot.Db.Models;
|
|
|
|
namespace NadekoBot.Modules.Searches.Common;
|
|
|
|
public static class Extensions
|
|
{
|
|
public static StreamDataKey CreateKey(this FollowedStream fs)
|
|
=> new(fs.Type, fs.Username.ToLower());
|
|
} |