ADBaseLibrary.Follows.IsFollow C# (CSharp) Method

IsFollow() public method

public IsFollow ( string showId, string pluginName ) : bool
showId string
pluginName string
return bool
        public bool IsFollow(string showId, string pluginName)
        {
            if (ShowFollows.Any(a => a.ShowId == showId && a.PluginName == pluginName))
                return true;
            return false;
        }

Same methods

Follows::IsFollow ( string showId, string pluginName, Quality quality, Format format ) : bool