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