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