-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
39 additions
and
64 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,11 +1,9 @@ | ||
namespace DiscordArchiver.data { | ||
|
||
public class DAuthor { | ||
|
||
public string username; | ||
public string discriminator; | ||
public string id; | ||
public ushort discriminator; | ||
public ulong id; | ||
public string avatar; | ||
|
||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,18 +1,12 @@ | ||
using System; | ||
|
||
namespace DiscordArchiver.data { | ||
|
||
public class DMessage { | ||
public DAttachment[] attachments; | ||
public bool tts; | ||
public DEmbed[] embeds; | ||
public DateTime? timestamp; | ||
public bool mention_everyone; | ||
public string id; | ||
public DateTime? edited_timestamp; | ||
public DateTime timestamp; | ||
public ulong id; | ||
public DAuthor author; | ||
public string content; | ||
public string channel_id; | ||
public ulong channel_id; | ||
public DAuthor[] mentions; | ||
} | ||
} | ||
} |
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