Add project files.

This commit is contained in:
hOLOlu
2021-06-30 17:31:08 +03:00
parent af98c77dc1
commit ae275b40b2
24 changed files with 2337 additions and 0 deletions

25
ComboValue/Class1.cs Normal file
View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComboValue
{
public class ComboboxValue
{
public int Id { get; private set; }
public string Name { get; private set; }
public ComboboxValue(int id, string name)
{
Id = id;
Name = name;
}
public override string ToString()
{
return Name;
}
}
}