Class MetaViewModel
Class which contains all information a MetaViewModel must contain
Inheritance
System.Object
MetaViewModel
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.CXUI.ViewModel
Assembly: Simplic.CXUI.ViewModel.dll
Syntax
public class MetaViewModel
Constructors
| Improve this Doc View SourceMetaViewModel()
Create new MetaViewModel
Declaration
public MetaViewModel()
Properties
| Improve this Doc View SourceBaseViewModel
Base class from which the view-model inherits.
Declaration
public MetaBaseViewModel BaseViewModel { get; set; }
Property Value
Type | Description |
---|---|
MetaBaseViewModel |
FullQualifiedBaseViewModel
Full qualified base view model namespace
Declaration
public string FullQualifiedBaseViewModel { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Name of the model/class
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Namespace
Namespace in which the model will be generated
Declaration
public string Namespace { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Properties
List of properties the model contains
Declaration
public IList<MetaViewModelProperty> Properties { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<MetaViewModelProperty> |