mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-02-16 10:58:31 -05:00
Move application files to sub-folder
This commit is contained in:
25
Application/Feeds/FeedAction.cs
Normal file
25
Application/Feeds/FeedAction.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
|
||||
namespace FeedCenter
|
||||
{
|
||||
public partial class FeedAction
|
||||
{
|
||||
#region Constructor
|
||||
|
||||
public FeedAction()
|
||||
{
|
||||
ID = Guid.NewGuid();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Methods
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return string.Format(Properties.Resources.FeedActionDescription, Field, Search, Replace);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user