[RTL]
[reactos.git] / reactos / tools / sysgen / RosFramework / RBuildMetadata.cs
1 using System;
2 using System.IO;
3 using System.Collections.Generic;
4 using System.Text;
5
6 namespace SysGen.RBuild.Framework
7 {
8 public class RBuildMetadata
9 {
10 private string m_Description = null;
11
12 public string Description
13 {
14 get { return m_Description; }
15 set { m_Description = value; }
16 }
17 }
18 }