aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/DTO/PublishedProcedureProjectsVersionDTOBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO/PublishedProcedureProjectsVersionDTOBase.cs')
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/PublishedProcedureProjectsVersionDTOBase.cs57
1 files changed, 0 insertions, 57 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/PublishedProcedureProjectsVersionDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/PublishedProcedureProjectsVersionDTOBase.cs
deleted file mode 100644
index 53d833d14..000000000
--- a/Software/Visual_Studio/Tango.BL/DTO/PublishedProcedureProjectsVersionDTOBase.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-
-//------------------------------------------------------------------------------
-// <auto-generated>
-// This code was generated by a tool.
-// Tango Observables Generator
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated. Do not modify!
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.BL.Entities;
-
-namespace Tango.BL.DTO
-{
- public abstract class PublishedProcedureProjectsVersionDTOBase : ObservableEntityDTO<PublishedProcedureProjectsVersionDTO, PublishedProcedureProjectsVersion>
- {
-
- /// <summary>
- /// published procedure project guid
- /// </summary>
- public String PublishedProcedureProjectGuid
- {
- get; set;
- }
-
- /// <summary>
- /// version
- /// </summary>
- public Int32 Version
- {
- get; set;
- }
-
- /// <summary>
- /// author
- /// </summary>
- public String Author
- {
- get; set;
- }
-
- /// <summary>
- /// project json string
- /// </summary>
- public String ProjectJsonString
- {
- get; set;
- }
-
- }
-}