mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-12 11:46:40 +00:00
-
This commit is contained in:
parent
2343747b1c
commit
c06482563e
2 changed files with 3 additions and 3 deletions
|
|
@ -36,8 +36,8 @@ namespace TicketManager.Models
|
||||||
[Display(Name = "Member since"), DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}")]
|
[Display(Name = "Member since"), DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}")]
|
||||||
public DateTime Created_at { get; private set; } = DateTime.Now;
|
public DateTime Created_at { get; private set; } = DateTime.Now;
|
||||||
|
|
||||||
// [Display(Name = "Avatar")]
|
[Display(Name = "Avatar")]
|
||||||
// public byte[] Picture { get; set; }
|
public byte[] Picture { get; set; }
|
||||||
|
|
||||||
public List<Assignment> Assignments { get; set; } = new List<Assignment>();
|
public List<Assignment> Assignments { get; set; } = new List<Assignment>();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
export interface User {
|
export interface User {
|
||||||
id: string;
|
id: string;
|
||||||
picture: string;
|
picture: File;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue