Files
moadiran/Shared/DTOs/CTicketDto.cs

21 lines
549 B
C#
Raw Normal View History

2024-04-13 15:03:27 +03:30
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 CTicketDto
{
2024-04-14 16:09:36 +03:30
public string? CompanyID { get; set; }
2024-04-13 15:03:27 +03:30
[Required]
2024-05-03 18:18:38 +03:30
[MinLength(3,ErrorMessage ="لطفا بیشتر بنویسید")]
2024-04-13 15:03:27 +03:30
public string Title { get; set; }
[Required]
2024-05-03 18:18:38 +03:30
[MinLength(3, ErrorMessage = "لطفا بیشتر بنویسید")]
2024-04-13 15:03:27 +03:30
public string Text { get; set; }
}
}