45 lines
1.0 KiB
C#
45 lines
1.0 KiB
C#
using _0_Framework.Application.Enums;
|
||
using System.ComponentModel.DataAnnotations;
|
||
|
||
namespace CompanyManagment.App.Contracts.ClassificationScheme;
|
||
|
||
public class EditClassificationSchemeDto
|
||
{
|
||
/// <summary>
|
||
/// آی دی طرح
|
||
/// </summary>
|
||
public long Id { get; set; }
|
||
|
||
/// <summary>
|
||
/// تاریخ شمول طرح
|
||
/// شمسی
|
||
/// </summary>
|
||
public string IncludingDateFa { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// تاریخ اجرای طرح
|
||
/// شمسی
|
||
/// </summary>
|
||
public string ExecutionDateFa { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// نام کامل طراح
|
||
/// </summary>
|
||
public string DesignerFullName { get; set; }
|
||
|
||
/// <summary>
|
||
/// شماره همراه طراح
|
||
/// </summary>
|
||
[RegularExpression("^[0-9]*$", ErrorMessage = "لطفا فقط عدد وارد کنید")]
|
||
public string DesignerPhone { get; set; }
|
||
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// نوع ضریب
|
||
/// </summary>
|
||
public TypeOfCoefficient TypeOfCoefficient { get; set; }
|
||
} |