28 lines
766 B
C#
28 lines
766 B
C#
using C4IT.FASD.Base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FasdDesktopUi.Basics.Models
|
|
{
|
|
public abstract class cEditableValueInformationBase
|
|
{
|
|
public string Description { get; set; }
|
|
public object CurrentValue { get; set; }
|
|
public Guid Id { get; set; } = Guid.Empty;
|
|
public cValueAddress DatabaseInfo { get; set; }
|
|
}
|
|
|
|
public class cEditValueInformationSelection : cEditableValueInformationBase
|
|
{
|
|
public List<KeyValuePair<object, string>> SelectionValues { get; set; }
|
|
}
|
|
|
|
public class cEditValueInformationText : cEditableValueInformationBase
|
|
{
|
|
|
|
}
|
|
}
|