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 Flows { get; set; } }