-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathSshKeyFile.cs
More file actions
21 lines (17 loc) · 495 Bytes
/
SshKeyFile.cs
File metadata and controls
21 lines (17 loc) · 495 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace QueryTree.Models
{
public class SshKeyFile
{
[Key]
public int Id { get; set; }
public string Filename { get; set; }
public string ContentType { get; set; }
public virtual ApplicationUser CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
}
}