Files
moadiran/Shared/DTOs/CTicketDto.cs

19 lines
399 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]
public string Title { get; set; }
[Required]
public string Text { get; set; }
}
}