mirror of
https://github.com/RPCS3/discord-bot.git
synced 2025-02-12 22:08:39 +00:00
13 lines
238 B
C#
13 lines
238 B
C#
using System;
|
|
|
|
namespace AppveyorClient.POCOs
|
|
{
|
|
public class Artifact
|
|
{
|
|
public DateTime? Created;
|
|
public string FileName;
|
|
public string Name;
|
|
public long Size;
|
|
public string Type;
|
|
}
|
|
} |