21 lines
549 B
C#
21 lines
549 B
C#
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
|
|
{
|
|
public string? CompanyID { get; set; }
|
|
[Required]
|
|
[MinLength(3,ErrorMessage ="لطفا بیشتر بنویسید")]
|
|
public string Title { get; set; }
|
|
[Required]
|
|
[MinLength(3, ErrorMessage = "لطفا بیشتر بنویسید")]
|
|
public string Text { get; set; }
|
|
}
|
|
}
|