-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEntry.cs
36 lines (30 loc) · 853 Bytes
/
Entry.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
/* ***********************************************
* Copyright (c) 2009-2010 luoshasha. All rights reserved";
* CLR version: 4.0.30319.296"
* File name: Entry.cs"
* Date: 12/5/2012 11:44:15 AM
* Author : luoshasha(sand)
* Email : [email protected]
* Description:
* History: created by luoshasha(sand) 12/5/2012 11:44:15 AM
* ***********************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SandLib.Util
{
public abstract class Entry
{
private EntryType _type;
public Entry(EntryType type)
{
_type = type;
}
public EntryType Type
{
get { return _type; }
}
public abstract string GetEntryLines();
}
}