init
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user