WIP
This commit is contained in:
parent
33dec60df2
commit
b45b927b1e
11 changed files with 100 additions and 56 deletions
16
Yavsc/Models/IT/Modeling/Letter.cs
Normal file
16
Yavsc/Models/IT/Modeling/Letter.cs
Normal 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();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue