rhentai/Gallery.cs
2021-05-28 21:06:37 +02:00

14 lines
274 B
C#

namespace Gallery
{
// Class Gallery Here are informations about the current random stored
public class Gallery{
public int Gallery_id { get; set; }
public Gallery(int gallery_id){
Gallery_id = gallery_id;
}
}
}