-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgallery.cs
More file actions
35 lines (35 loc) · 786 Bytes
/
gallery.cs
File metadata and controls
35 lines (35 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
namespace Practise_sem
{
#region Gallery
public class Gallery
{
#region Member Variables
protected int _Number;
protected string _path;
#endregion
#region Constructors
public Gallery() { }
public Gallery(string path)
{
this._path=path;
}
#endregion
#region Public Properties
public virtual int Number
{
get {return _Number;}
set {_Number=value;}
}
public virtual string Path
{
get {return _path;}
set {_path=value;}
}
#endregion
}
#endregion
}