24 lines
566 B
C#
24 lines
566 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UniversalEditor.ObjectModels.Designer
|
|
{
|
|
public class Connection
|
|
{
|
|
public class ConnectionCollection
|
|
: System.Collections.ObjectModel.Collection<Connection>
|
|
{
|
|
|
|
}
|
|
|
|
private Guid mvarID = Guid.Empty;
|
|
public Guid ID { get { return mvarID; } set { mvarID = value; } }
|
|
|
|
private string mvarTitle = String.Empty;
|
|
public string Title { get { return mvarTitle; } set { mvarTitle = value; } }
|
|
|
|
}
|
|
}
|