16 lines
322 B
C#
Executable File
16 lines
322 B
C#
Executable File
using System;
|
|
namespace Mocha.Core
|
|
{
|
|
public class Instance
|
|
{
|
|
public Instance(Guid globalIdentifier, int? index = null)
|
|
{
|
|
GlobalIdentifier = globalIdentifier;
|
|
Index = index;
|
|
}
|
|
|
|
public Guid GlobalIdentifier { get; } = Guid.Empty;
|
|
public int? Index { get; } = null;
|
|
}
|
|
}
|