mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
14 lines
No EOL
409 B
C#
14 lines
No EOL
409 B
C#
using System;
|
|
|
|
namespace TicketManager.Models
|
|
{
|
|
public class Activity
|
|
{
|
|
public int Id { get; set; }
|
|
public string Description { get; set; }
|
|
public DateTime UpdateDate { get; private set; } = DateTime.Now;
|
|
public ActivityType ActivityType { get; set; } = ActivityType.Undefined;
|
|
// public Guid UserId { get; set; }
|
|
public int TaskId { get; set; }
|
|
}
|
|
} |