2007-11-20 20:12:45 +00:00

27 lines
410 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace VEPROMS.CSLA.Library
{
public partial class TransitionInfo
{
public string PathTo
{
get
{
//return "To " + MyItemToID.Path;
return MyItemToID.Path;
}
}
public string PathFrom
{
get
{
//return "From " + MyContent.ContentItems[0].Path;
return MyContent.ContentItems[0].Path;
}
}
}
}