docker files fixes from liaqat
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Managing.Domain.Workflows.Synthetics;
|
||||
using Managing.Infrastructure.Databases.MongoDb.Attributes;
|
||||
using Managing.Infrastructure.Databases.MongoDb.Configurations;
|
||||
using static Managing.Common.Enums;
|
||||
|
||||
namespace Managing.Infrastructure.Databases.MongoDb.Collections;
|
||||
|
||||
[BsonCollection("Workflow")]
|
||||
public class WorkflowDto : Document
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
public WorkflowUsage Usage { get; set; }
|
||||
public List<SyntheticFlow> Flows { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user