13 lines
227 B
C#
13 lines
227 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Shared.DTOs
|
|
{
|
|
public enum SideType
|
|
{
|
|
[Display(Name = "مشتری")]
|
|
Customer,
|
|
[Display(Name = "کارشناس")]
|
|
Expert
|
|
}
|
|
}
|