14 lines
330 B
C#
14 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Server_Dashboard {
|
|
|
|
/// <summary>
|
|
/// This class represents RAM
|
|
/// TODO: figure out if it makes sense to create a class for the entire system memory
|
|
/// or for each and every stick
|
|
/// </summary>
|
|
internal class RAM {
|
|
}
|
|
} |