Cleanup and created Gallery.cs

This commit is contained in:
sevi-kun 2021-05-28 21:06:37 +02:00
parent b6d5327243
commit 00cd7b3dcc

13
Gallery.cs Normal file
View File

@ -0,0 +1,13 @@
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;
}
}
}