24 lines
296 BLFS
C#
Executable File
24 lines
296 BLFS
C#
Executable File
using System;
|
|
|
|
namespace Models
|
|
{
|
|
[Serializable]
|
|
public class Photo
|
|
{
|
|
public int albumId;
|
|
|
|
public int id;
|
|
|
|
public string title;
|
|
|
|
public string url;
|
|
|
|
public string thumbnailUrl;
|
|
|
|
public override string ToString(){
|
|
return UnityEngine.JsonUtility.ToJson (this, true);
|
|
}
|
|
}
|
|
}
|
|
|