18 lines
378 B
C#
Executable File
18 lines
378 B
C#
Executable File
using System;
|
|
namespace Mocha.Core
|
|
{
|
|
public abstract class Attribute
|
|
{
|
|
protected Attribute()
|
|
{
|
|
}
|
|
|
|
public Instance TargetInstance { get; }
|
|
public Instance AttributeInstance { get; }
|
|
public object Value { get; }
|
|
|
|
public DateTime ModificationDate { get; }
|
|
public Instance ModificationUser { get; }
|
|
}
|
|
}
|