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,34 @@
using System;
using System.Collections.Generic;
using Kreta.Ellenorzo.Domain.VN.UniqueIdentifier;
namespace Kreta.Ellenorzo.Domain.VN.Lep
{
public class EloadasResponse : IEqualityComparer<EloadasResponse>
{
public EloadasUid Uid { get; set; }
public DateTime Datum { get; set; }
public DateTime EloadasKezdete { get; set; }
public DateTime EloadasVege { get; set; }
public string EloadasNev { get; set; }
public string SzervezetNev { get; set; }
public string Helyszin { get; set; }
public bool Megjelent { get; set; }
public bool? GondviseloElfogadas { get; set; }
public bool Equals(EloadasResponse x, EloadasResponse y) => x == y || x.Uid.Equals(y.Uid);
public int GetHashCode(EloadasResponse obj)
{
return base.GetHashCode();
}
}
}