14 lines
312 B
C#
14 lines
312 B
C#
namespace EveOPreview.View
|
|
{
|
|
sealed class ThumbnailDescription : IThumbnailDescription
|
|
{
|
|
public ThumbnailDescription(string title, bool isDisabled)
|
|
{
|
|
this.Title = title;
|
|
this.IsDisabled = isDisabled;
|
|
}
|
|
|
|
public string Title { get; set; }
|
|
public bool IsDisabled { get; set; }
|
|
}
|
|
} |