init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.Enums.VN;
|
||||
|
||||
namespace Kreta.Ellenorzo.Domain.VN.Intezmeny.Rendszermodul
|
||||
{
|
||||
public class RendszermodulListResponse : IEqualityComparer<RendszermodulListResponse>
|
||||
{
|
||||
public bool IsAktiv { get; set; }
|
||||
|
||||
public string Url { get; set; }
|
||||
|
||||
public RendszermodulTipus Tipus { get; set; }
|
||||
|
||||
public bool Equals(RendszermodulListResponse x, RendszermodulListResponse y) => x.Tipus.Equals(y.Tipus);
|
||||
|
||||
public int GetHashCode(RendszermodulListResponse obj) => obj.Tipus.GetHashCode();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue