Start Implementing XBaseFileProvider ...

This commit is contained in:
2025-12-08 04:41:52 +03:30
parent 64969bf9b1
commit 4cf1e4d629
7 changed files with 433 additions and 149 deletions
+3
View File
@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using xCommons.Constants;
using xModels.Base;
using xModels.Dtos;
@@ -19,5 +20,7 @@ namespace xFileService.Models.Dtos
public string OwnerId { get; set; }
public XPersonDto Owner { get; set; }
public IList<string> References = new List<string>();
}
}
+7
View File
@@ -64,5 +64,12 @@ namespace xFileService.Models.Entities
/// </summary>
/// <value></value>
public string FileName { get; set; }
/// <summary>
/// Comma Separated List Which Provides Pointer to Specified
/// Model for Describe ...
/// </summary>
/// <value></value>
public string References { get; set; }
}
}