using C4IT.FASD.Base; using FasdDesktopUi.Basics.UiActions; using System.Collections.Generic; namespace FasdDesktopUi.Basics.Services.Models { public class CockpitValueDisplayData { public string Title { get; set; } public IList Values { get; set; } public IList Levels { get; set; } public bool IsLoading { get; set; } public IList UiActions { get; set; } } }