geekbot/Geekbot.net/Commands/Utils/Quote/QuoteObjectDto.cs

12 lines
290 B
C#
Raw Normal View History

using System;
namespace Geekbot.net.Commands.Utils.Quote
{
internal class QuoteObjectDto
{
public ulong UserId { get; set; }
public string Quote { get; set; }
public DateTime Time { get; set; }
public string Image { get; set; }
}
}