22 lines
489 B
C#
22 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TaskTrackerDataModels.Enums;
|
|
|
|
namespace TaskTrackerDataModels.Models
|
|
{
|
|
public interface ITaskModel : IId
|
|
{
|
|
int ProjectId { get; }
|
|
int UserId { get; }
|
|
string Title { get; }
|
|
|
|
string Description { get; }
|
|
MyTaskStatus Status { get; }
|
|
DateTime DateCreate { get; }
|
|
DateTime? DateImplement { get; }
|
|
}
|
|
}
|