16 lines
408 B
C#
16 lines
408 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Neighbourhood.omg.lol.Models {
|
|||
|
public class PutPicResponseData : IOmgLolResponseData {
|
|||
|
public string Message { get; set; }
|
|||
|
public string Id { get; set; }
|
|||
|
public long Size { get; set; }
|
|||
|
public string Mime { get; set; }
|
|||
|
public string Url { get; set; }
|
|||
|
}
|
|||
|
}
|