17 lines
521 B
C#
17 lines
521 B
C#
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; }
|
|
}
|
|
|