39 lines
935 B
C#
39 lines
935 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DDUtilityApp.SPECDOCUMENT
|
|
{
|
|
|
|
[Serializable]
|
|
public class SpecInfo
|
|
{
|
|
|
|
#region [ Variables ] =================================================
|
|
#endregion
|
|
|
|
#region [ Properties ] ================================================
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public List<DocumentInfo> DocumentInfos { get; set; } = new List<DocumentInfo>();
|
|
|
|
#endregion
|
|
|
|
#region [ SpecInfo ] ==================================================
|
|
#endregion
|
|
|
|
#region [ Public Methods ] ============================================
|
|
#endregion
|
|
|
|
#region [ Methods ] ===================================================
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|