This commit is contained in:
mmrbnjd
2025-06-28 17:05:54 +03:30
parent b1c9fa15c1
commit 279940198a
2 changed files with 11 additions and 1 deletions

14
Common/Models/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 Common.Models
{
public class IdName<T>
{
public T ID { get; set; }
public string Title { get; set; }
}
}