This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -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();
}
}