14 lines
274 B
C#
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;
|
|
}
|
|
|
|
|
|
}
|
|
}
|