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