Files
Hushian/Common/Models/IdName.cs

15 lines
263 B
C#
Raw Normal View History

2025-06-28 16:43:25 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-06-28 17:05:54 +03:30
namespace Common.Models
2025-06-28 16:43:25 +03:30
{
public class IdName<T>
{
public T ID { get; set; }
public string Title { get; set; }
}
}