초기 커밋.
This commit is contained in:
41
DDUtilityApp/SPECDOCUMENT/DocumentInfo.cs
Normal file
41
DDUtilityApp/SPECDOCUMENT/DocumentInfo.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DDUtilityApp.SPECDOCUMENT
|
||||
{
|
||||
|
||||
[Serializable]
|
||||
public class DocumentInfo
|
||||
{
|
||||
|
||||
#region [ Variables ] =================================================
|
||||
#endregion
|
||||
|
||||
#region [ Properties ] ================================================
|
||||
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
public string Version { get; set; } = string.Empty;
|
||||
|
||||
public string Description { get; set; } = string.Empty;
|
||||
|
||||
public string Path { get; set; } = string.Empty;
|
||||
|
||||
#endregion
|
||||
|
||||
#region [ DocumentInfo ] ==============================================
|
||||
#endregion
|
||||
|
||||
#region [ Public Methods ] ============================================
|
||||
#endregion
|
||||
|
||||
#region [ Methods ] ===================================================
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user