초기 커밋.

This commit is contained in:
2025-02-03 11:02:48 +09:00
parent a7d46f415f
commit fe9aa0799f
2334 changed files with 674826 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
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
}
}