14 lines
242 B
C#
14 lines
242 B
C#
namespace ShopView
|
|
{
|
|
public class TestModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string FIO { get; set; }
|
|
|
|
public string ProductCategoryName { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
}
|
|
}
|