11 lines
201 B
C#
11 lines
201 B
C#
using System;
|
|
|
|
namespace EveOPreview.UI
|
|
{
|
|
public interface IThumbnailDescriptionView : IView
|
|
{
|
|
IntPtr Id { get; set; }
|
|
string Title { get; set; }
|
|
bool IsDisabled { get; set; }
|
|
}
|
|
} |