using System; using System.Collections.Generic; namespace Kreta.DataAccess.Interfaces { public interface IFenntarto : IEntity { string Nev { get; set; } string Azonosito { get; set; } Guid Guid { get; set; } int? LegmagasabbSzintuFenntartoId { get; set; } bool IsTesztFenntarto { get; set; } IReadOnlyList Intezmeny { get; } } }