aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/MediaPurposesViewVM.cs
blob: 3df2ada93e7d5c93b49a747236f7ca357bf399f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.MachineStudio.Common.Notifications;

namespace Tango.MachineStudio.DB.ViewModels
{
    public class MediaPurposesViewVM : DbTableViewModel<MediaPurpos>
    {
        public MediaPurposesViewVM(INotificationProvider notification) : base(notification)
        {
        }
    }
}
name of the highlighting definition. /// </summary> string Name { get; } /// <summary> /// Gets the main rule set. /// </summary> HighlightingRuleSet MainRuleSet { get; } /// <summary> /// Gets a rule set by name. /// </summary> /// <returns>The rule set, or null if it is not found.</returns> HighlightingRuleSet GetNamedRuleSet(string name); /// <summary> /// Gets a named highlighting color. /// </summary> /// <returns>The highlighting color, or null if it is not found.</returns> HighlightingColor GetNamedColor(string name); /// <summary> /// Gets the list of named highlighting colors. /// </summary> IEnumerable<HighlightingColor> NamedHighlightingColors { get; } } /// <summary> /// Extension of IHighlightingDefinition to avoid breaking changes in the API. /// </summary> public interface IHighlightingDefinition2 : IHighlightingDefinition { /// <summary> /// Gets the list of properties. /// </summary> IDictionary<string, string> Properties { get; } } }