Models ...

This commit is contained in:
2025-12-07 11:51:25 +03:30
parent 59ac19ce40
commit 620a11f368
3 changed files with 40 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
bin
obj
+12
View File
@@ -0,0 +1,12 @@
using System.Collections.Generic;
using xModels.Base;
namespace xTagService.Models.Dtos
{
public class XTagDto : XBaseDto
{
public int Id { get; set; }
public string Tag { get; set; }
public IList<string> Reference = new List<string>();
}
}
+26
View File
@@ -0,0 +1,26 @@
using System.ComponentModel.DataAnnotations;
using xModels.Base;
namespace xTagService.Models.Entities
{
/// <summary>
/// Describing References ...
/// </summary>
public class XTag : XBaseIntIDEntity
{
/// <summary>
/// Tag Label ...
/// </summary>
/// <value></value>
[Required]
[StringLength(255)]
public string Tag { get; set; }
/// <summary>
/// Comma Separated List Which Provides Pointer to Specified
/// Model for Describe ...
/// </summary>
/// <value></value>
public string References { get; set; }
}
}