mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 16:56:40 +00:00
15 lines
357 B
C#
15 lines
357 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TicketManager.Models
|
|
{
|
|
public interface ITask
|
|
{
|
|
int Id { get; set; }
|
|
string Title { get; set; }
|
|
string Description { get; set; }
|
|
DateTime CreationDate { get; }
|
|
DateTime EndingDate { get; set; }
|
|
List<Activity> Activities { get; set; }
|
|
}
|
|
}
|