Skip to content

Commit

Permalink
add missing FodyWeavers
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevillard committed Jan 14, 2025
1 parent afc14fa commit fe83739
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Text.Json.Nodes;
using System.Threading.Tasks;

namespace Elsa.Connections.Models;

public class ConnectionConfigurationModel
{
public string Id { get; set; }
[Required]
public string? Name { get; set; }
public string Description { get; set; }

public JsonObject ConnectionConfiguration { get; set; }

[Required]
public string ConnectionType { get; set; }
}
3 changes: 3 additions & 0 deletions src/modules/Elsa.Connections.Models/FodyWeavers.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd">
<ConfigureAwait />
</Weavers>

0 comments on commit fe83739

Please sign in to comment.