27 lines
410 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|