20 lines
462 B
C#
20 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.DTOs
|
|
{
|
|
public class TestModel
|
|
{
|
|
[Display(Name = "شناسه")]
|
|
public int ID { get; set; }
|
|
[Display(Name = "نام")]
|
|
public string Name { get; set; }
|
|
[Display(Name = "آدرس")]
|
|
public string Address { get; set; }
|
|
}
|
|
}
|