aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UpdatedEntity.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UpdatedEntity.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UpdatedEntity.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UpdatedEntity.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UpdatedEntity.cs
deleted file mode 100644
index faee20678..000000000
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UpdatedEntity.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.BL;
-
-namespace Tango.PPC.Common.Web
-{
- public class UpdatedEntity
- {
- public UpdatedEntity()
- {
-
- }
-
- public UpdatedEntity(IObservableEntity entity) : this()
- {
- Guid = entity.Guid;
- LastUpdated = entity.LastUpdated;
- }
-
- public String Guid { get; set; }
- public DateTime LastUpdated { get; set; }
-
- public override string ToString()
- {
- return $"{Guid} | {LastUpdated}";
- }
- }
-}