15 lines
378 B
C#
15 lines
378 B
C#
using C4IT.FASD.Base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FasdDesktopUi.Basics.Services.RelationService
|
|
{
|
|
public class RelationEventArgs : EventArgs
|
|
{
|
|
public ILookup<enumFasdInformationClass, cF4sdApiSearchResultRelation> Relations { get; set; }
|
|
}
|
|
}
|