mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
17 lines
No EOL
467 B
C#
17 lines
No EOL
467 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TicketManager.Models
|
|
{
|
|
public class History
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public DateTime UpdateDate { get; } = DateTime.Now;
|
|
public ActivityType ActivityType { get; set; } = ActivityType.Undefined;
|
|
|
|
public User User { get; set; }
|
|
public int UserId { get; set; }
|
|
}
|
|
} |