Library refactor, divided model by type
Added read/update metadata to the cms client
This commit is contained in:
@@ -1,9 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using static CMS_CORE_Library.DataStructures;
|
||||
using System.Linq;
|
||||
using static CMS_CORE_Library.Models.DataStructures;
|
||||
|
||||
namespace Step.Model.DTOModels
|
||||
{
|
||||
@@ -17,7 +13,7 @@ namespace Step.Model.DTOModels
|
||||
|
||||
if (Path != item.Path)
|
||||
return false;
|
||||
if(IsoLines != null && item.IsoLines != null)
|
||||
if (IsoLines != null && item.IsoLines != null)
|
||||
if (!IsoLines.SequenceEqual(item.IsoLines))
|
||||
return false;
|
||||
|
||||
@@ -27,4 +23,4 @@ namespace Step.Model.DTOModels
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user