mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
27 lines
No EOL
621 B
C#
27 lines
No EOL
621 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using TicketManager.Models;
|
|
|
|
namespace TicketManager.Resources
|
|
{
|
|
public class NewTicketDTO
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
[DataType(DataType.Date)]
|
|
public DateTime EndingDate { get; set; }
|
|
|
|
public string Impact { get; set; }
|
|
|
|
public string Difficulty { get; set; }
|
|
|
|
public string Category { get; set; }
|
|
|
|
public Guid CreatorId { get; set; }
|
|
public int ProjectId { get; set; }
|
|
}
|
|
} |