mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
25 lines
262 B
C#
25 lines
262 B
C#
namespace MicrosoftZuneLibrary
|
|
{
|
|
internal class HrStatusBase
|
|
{
|
|
protected int m_HrStatus;
|
|
|
|
public int HrStatus
|
|
{
|
|
get
|
|
{
|
|
return m_HrStatus;
|
|
}
|
|
set
|
|
{
|
|
m_HrStatus = value;
|
|
}
|
|
}
|
|
|
|
public HrStatusBase()
|
|
{
|
|
m_HrStatus = 0;
|
|
}
|
|
}
|
|
}
|