Skip to content

Commit

Permalink
Fixed IntegrationCreationDto<T>
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnmbond committed Jan 4, 2024
1 parent 90f112d commit 05d87ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LogicMonitor.Api/Settings/IntegrationCreationDto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/// Constructor
/// </remarks>
/// <param name="type">The integration type</param>
public abstract class IntegrationCreationDto<T>(string type) where T : Integration
public abstract class IntegrationCreationDto<T>(string type) : CreationDto<Integration> where T : Integration
{
/// <summary>
/// The LogicMonitor Name
Expand Down

0 comments on commit 05d87ed

Please sign in to comment.