Working on Thumbnail List Update notifications - Disabled the old system

This commit is contained in:
Anton Kasyanov
2018-02-19 21:12:17 +02:00
parent b8d7c71f06
commit 7401e25719
16 changed files with 92 additions and 151 deletions

View File

@@ -0,0 +1,14 @@
namespace EveOPreview.View
{
sealed class ThumbnailDescription
{
public ThumbnailDescription(string title, bool isDisabled)
{
this.Title = title;
this.IsDisabled = isDisabled;
}
public string Title { get; set; }
public bool IsDisabled { get; set; }
}
}