Files
moadiran/Shared/DTOs/IdName.cs

23 lines
448 B
C#
Raw Normal View History

2024-05-08 17:48:09 +03:30
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; }
}
2024-05-23 19:59:19 +03:30
public class CODIdName<T>: IdName<T>
{
public int Tax { get; set; }
}
2024-06-18 16:15:17 +03:30
public class IdNameByCount<T> : IdName<T>
{
public int count { get; set; }
}
2024-05-08 17:48:09 +03:30
}