Refactoring XReference Mechanism ...

This commit is contained in:
2025-12-17 14:46:07 +03:30
parent 51f5aea872
commit 82a1936a9d
4 changed files with 783 additions and 1146 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using xDataService.Models;
using xModels.Base;
namespace xTagService.Models.Dtos
@@ -7,6 +8,6 @@ namespace xTagService.Models.Dtos
{
public int Id { get; set; }
public string Tag { get; set; }
public IList<string> References = new List<string>();
public IList<XReference<string>> References = new List<XReference<string>>();
}
}