12 lines
293 B
C#
12 lines
293 B
C#
|
namespace TaskProject.Entity
|
|||
|
{
|
|||
|
public class Task
|
|||
|
{
|
|||
|
public Guid Id { get; init; } = Guid.NewGuid();
|
|||
|
public string Title { get; set; } = string.Empty;
|
|||
|
public string Description { get; set; } = string.Empty;
|
|||
|
public Guid ProjectId { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
}
|