This repository has been archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move reaction public models into namespace
- Loading branch information
Showing
9 changed files
with
37 additions
and
35 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
src/SlackConnector/Models/Reactions/SlackFileCommentReaction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace SlackConnector.Models.Reactions | ||
{ | ||
public class SlackFileCommentReaction : ISlackReaction | ||
{ | ||
public string RawData { get; internal set; } | ||
public SlackUser User { get; internal set; } | ||
public double Timestamp { get; internal set; } | ||
public string Reaction { get; internal set; } | ||
public string File { get; internal set; } | ||
public string FileComment { get; internal set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace SlackConnector.Models.Reactions | ||
{ | ||
public class SlackFileReaction : ISlackReaction | ||
{ | ||
public string RawData { get; internal set; } | ||
public SlackUser User { get; internal set; } | ||
public double Timestamp { get; internal set; } | ||
public string Reaction { get; internal set; } | ||
public string File { get; internal set; } | ||
public SlackUser ReactingToUser { get; internal set; } | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...kConnector/Models/SlackMessageReaction.cs → .../Models/Reactions/SlackMessageReaction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/SlackConnector/Models/Reactions/SlackUnknownReaction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace SlackConnector.Models.Reactions | ||
{ | ||
public class SlackUnknownReaction : ISlackReaction | ||
{ | ||
public string RawData { get; internal set; } | ||
public SlackUser User { get; internal set; } | ||
public double Timestamp { get; internal set; } | ||
public string Reaction { get; internal set; } | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters