This commit is contained in:
2022-06-18 01:43:24 +00:00
parent ab28b85e14
commit 4a27b638c2
7 changed files with 146 additions and 3 deletions

17
AyaNovaQBI/NameIdItem.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyaNovaQBI
{
public class NameIdItem
{
public long Id { get; set; }
public string Name { get; set; }
}
}