10 lines
214 B
C#
10 lines
214 B
C#
using System;
|
|
using EveOPreview.View;
|
|
|
|
namespace EveOPreview.UI
|
|
{
|
|
public interface IThumbnailDescriptionViewFactory
|
|
{
|
|
IThumbnailDescriptionView Create(IntPtr id, string title, bool isDisabled);
|
|
}
|
|
} |