inital
This commit is contained in:
27
FasdDesktopUi/Basics/Models/EditableValueInformation.cs
Normal file
27
FasdDesktopUi/Basics/Models/EditableValueInformation.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user