This commit is contained in:
mmrbnjd
2024-05-07 13:55:11 +03:30
parent 85d9dfe849
commit 91fcef70d7
7 changed files with 153 additions and 29 deletions

View File

@@ -0,0 +1,8 @@
namespace Front.CUSComponent
{
public class Employee
{
public string LastName { get; set; }
public string FirstName { get; set; }
}
}