This commit is contained in:
Paul Schneider 2017-01-20 00:51:02 +01:00
commit b45b927b1e
11 changed files with 100 additions and 56 deletions

View file

@ -0,0 +1,16 @@
using YavscLib;
namespace Yavsc.Models.IT.Modeling
{
public abstract class Letter<T> : ILetter<T>
{
public abstract bool Equals(T x, T y);
public int GetHashCode(T obj)
{
return obj.GetHashCode();
}
}
}