mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
14 lines
No EOL
342 B
C#
14 lines
No EOL
342 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace TicketManager.Resources
|
|
{
|
|
public class NewProjectDTO
|
|
{
|
|
[Required]
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public DateTime EndingDate { get; set; }
|
|
public Guid ManagerId { get; set; }
|
|
}
|
|
} |