16 lines
340 B
C#
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; }
|
|
|
|
}
|
|
}
|
|
|