ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Download File
|
View Changeset
|
Root Listing
root
/
gr2lib
/
trunk
/
gr2lib
/
core
/
interfaces
/
IFilePath.cs
Revision:
79
Committed:
Thu Jul 15 21:50:56 2010 UTC
(12 years, 8 months ago) by
william
File size:
275 byte(s)
Log Message:
create and implement interfaces for all core classes (for type casting)
File Contents
#
User
Rev
Content
1
william
79
using
System
;
2
using
System.Collections.Generic
;
3
using
System.Linq
;
4
using
System.Text
;
5
6
namespace
gr2lib.core.interfaces
7
{
8
public
interface
IFilePath
9
{
10
string
FullPath
{
get
;
}
11
string
Path
{
get
;
}
12
string
Name
{
get
;
}
13
}
14
}