Class FlowConfigurationModel
Represents FlowConfiguration table in the db
Inheritance
System.Object
FlowConfigurationModel
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.Flow.Configuration
Assembly: Simplic.Flow.Configuration.dll
Syntax
public class FlowConfigurationModel
Properties
| Improve this Doc View SourceConfiguration
Gets or sets the flow configuration json as byte array.
Declaration
public byte[] Configuration { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |
Description
Gets or sets the decription of this configuration.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
Gets or sets the Id of the flow
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IsActive
Gets or sets if the configuration is active. If not, it will not be processed.
Declaration
public bool IsActive { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsDeleted
Gets or sets whether the flow configuration is deleted.
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
MachineName
Gets or sets the current machine name
Declaration
public string MachineName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets or sets the name of the flow
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ServiceName
Gets or sets the service name
Declaration
public string ServiceName { get; set; }
Property Value
Type | Description |
---|---|
System.String |