forked from gavinkendall/autoscreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSlide.cs
38 lines (32 loc) · 802 Bytes
/
Slide.cs
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
36
37
38
/////////////////////////////////////////////////////////////////////////////////
// Auto Screen Capture 2.0.5
// AutoScreenCapture2.Slide.cs
//
// Wednesday, 2 July 2008 - Wednesday, 26 June 2013
// Copyright 2008-2013 Gavin Kendall ([email protected])
using System;
using System.Text;
using System.Drawing;
using System.Collections;
using System.Collections.Generic;
namespace AutoScreenCapture2
{
public class Slide
{
private string m_name;
private ArrayList m_files;
public Slide()
{
}
public ArrayList Files
{
set { m_files = value; }
get { return m_files; }
}
public string Name
{
set { m_name = value; }
get { return m_name; }
}
}
}