This commit is contained in:
mmrbnjd
2024-05-08 17:48:09 +03:30
parent c3c74635cb
commit 10a22c053c
3 changed files with 29 additions and 3 deletions

14
Shared/DTOs/IdName.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class IdName<T>
{
public T ID { get; set; }
public string Title { get; set; }
}
}