singrdk/base/Applications/NameSpace/AtomicTestDSP/Property.sg

45 lines
961 B
Plaintext
Raw Permalink Normal View History

2008-11-17 18:29:00 -05:00
// ----------------------------------------------------------------------------
2008-03-05 09:52:00 -05:00
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
2008-11-17 18:29:00 -05:00
// ----------------------------------------------------------------------------
2008-03-05 09:52:00 -05:00
#if !SINGULARITY_PROCESS
namespace Microsoft.Singularity.Directory
#else
namespace Microsoft.Application.DSP
#endif
{
public class Property
{
private string name;
private byte[] value;
public Property(string! name, byte[]! value)
{
this.name = name;
this.value = value;
}
public string! Name
{
get
{
return (!)name;
}
}
public byte[]! Value
{
get
{
return (!)value;
}
set
{
this.value = value;
}
}
}
}