ltable
This commit is contained in:
24
Shared/DTOs/RCustomer.cs
Normal file
24
Shared/DTOs/RCustomer.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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 RCustomer
|
||||
{
|
||||
[Display(Name ="شناسه")]
|
||||
public int ID { get; set; }
|
||||
[Display(Name = "نام کامل")]
|
||||
public string FullName { get; set; }
|
||||
[Display(Name = "نوع مشتری")]
|
||||
public string CustomerType { get; set; }
|
||||
[Display(Name = "تلفن")]
|
||||
public string Phone { get; set; }
|
||||
[Display(Name = "کد اقتصادی")]
|
||||
public string? EconomicCode { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user