mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 01:25:38 -05:00
26 lines
431 B
C#
26 lines
431 B
C#
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
|
|
}
|
|
}
|