mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
15 lines
No EOL
352 B
C#
15 lines
No EOL
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TicketManager.Models
|
|
{
|
|
public class Note
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public DateTime Created_at { get; set; } = DateTime.Now;
|
|
|
|
public Ticket Ticket { get; set; }
|
|
}
|
|
} |