forked from briandunnington/growl-for-windows
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
adf22a9
commit 8044994
Showing
73 changed files
with
5,211 additions
and
3,937 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
Growl Extras/Feed Monitor/GrowlExtras.FeedMonitor/_source/FeedInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace GrowlExtras.FeedMonitor | ||
{ | ||
public class FeedInfo | ||
{ | ||
string title; | ||
string url; | ||
List<FeedItem> items; | ||
|
||
public string Title | ||
{ | ||
get | ||
{ | ||
return this.title; | ||
} | ||
set | ||
{ | ||
this.title = value; | ||
} | ||
} | ||
|
||
public string Url | ||
{ | ||
get | ||
{ | ||
return this.url; | ||
} | ||
set | ||
{ | ||
this.url = value; | ||
} | ||
} | ||
|
||
public List<FeedItem> Items | ||
{ | ||
get | ||
{ | ||
return this.items; | ||
} | ||
set | ||
{ | ||
this.items = value; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.