Working on Thumbnail List Update notifications - Disabled the old system
This commit is contained in:
14
Eve-O-Preview/View/Implementation/ThumbnailDescription.cs
Normal file
14
Eve-O-Preview/View/Implementation/ThumbnailDescription.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user