mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
19 lines
No EOL
500 B
C#
19 lines
No EOL
500 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TicketManager.Models
|
|
{
|
|
public class File
|
|
{
|
|
public int Id { get; set; }
|
|
public string Location { get; set; }
|
|
public string Description { get; set; }
|
|
public int Size { get; set; }
|
|
public string Format { get; set; }
|
|
|
|
public User AddedBy { get; set; }
|
|
public int UserId { get; set; }
|
|
// public ITask AddedTo { get; set; }
|
|
// public int ITaskId { get; set; }
|
|
}
|
|
} |