Nerd_STF/Nerd_STF/IContainer.cs
2022-04-17 13:43:38 -04:00

14 lines
252 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Nerd_STF
{
public interface IContainer<T> where T : IEquatable<T>
{
public bool Contains(T item);
}
}