ITaskBoardCardModel
Interface
Base interface for card - typical visual representation of a task.
Definition
Namespace:Telerik.Windows.Controls.TaskBoard
Assembly:Telerik.Windows.Controls.dll
Syntax:
C#
public interface ITaskBoardCardModel : INotifyPropertyChanged
Derived Classes:
Inherited Members
Properties
Gets or sets the task's category name.
C#
string CategoryName { get; set; }
Gets or sets the description of the task.
C#
string Description { get; set; }
Gets or sets a value indicating whether to show the category indicator.
C#
bool ShowCategoryIndicator { get; set; }
Gets or sets the collection of tags associated to the task.
C#
IList<object> Tags { get; }