This commit is contained in:
mmrbnjd
2024-05-05 18:15:37 +03:30
parent 67adbee29a
commit df6c31eac2
13 changed files with 451 additions and 163 deletions

19
Shared/DTOs/TestModel.cs Normal file
View File

@@ -0,0 +1,19 @@
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; }
}
}