mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
18 lines
323 B
C#
18 lines
323 B
C#
namespace GithubClient.POCOs
|
|
{
|
|
public class PrInfo
|
|
{
|
|
public int Number;
|
|
public string Title;
|
|
public GithubUser User;
|
|
public int Additions;
|
|
public int Deletions;
|
|
public int ChangedFiles;
|
|
}
|
|
|
|
public class GithubUser
|
|
{
|
|
public string Login;
|
|
}
|
|
}
|