Apply Cleanup and Refactor some models ...

This commit is contained in:
2025-11-04 18:11:31 +03:30
parent 65dd819fb8
commit d8342e973d
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -12,6 +12,6 @@ namespace xModels.Dtos
public class XResourceDto : XBaseDto public class XResourceDto : XBaseDto
{ {
public string Resource { get; set; } public string Resource { get; set; }
public ICollection<XLocaleResourceDto> Locales { get; set; } = new HashSet<XLocaleResourceDto>(); public IEnumerable<XLocaleResourceDto> Locales { get; set; } = new HashSet<XLocaleResourceDto>();
} }
} }
-1
View File
@@ -1,4 +1,3 @@
using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using xCommons.Extensions; using xCommons.Extensions;