kreta/Kreta.DataAccessInterfaceGenerated/IAMITantargySablon.cs
2024-03-13 00:33:46 +01:00

16 lines
340 B
C#

using System;
using System.Collections.Generic;
namespace Kreta.DataAccess.Interfaces
{
public interface IAMITantargySablon : IEntity
{
bool IsHangszer { get; set; }
string Nev { get; set; }
IReadOnlyList<ITantargy> Tantargy { get; }
IReadOnlyList<IAMITTFSablon> AMITTFSablon { get; }
}
}