Two things:
* User views its devices, from a /manage index link * Yavsc.Server resurection
This commit is contained in:
17
Yavsc.Server/Models/Workflow/Projet.cs
Normal file
17
Yavsc.Server/Models/Workflow/Projet.cs
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Yavsc.Models
|
||||
{
|
||||
public partial class Projet
|
||||
{
|
||||
[Key(),DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public long Id { get; set; }
|
||||
|
||||
[ForeignKeyAttribute("AspNetUsers.Id")]
|
||||
public string ManagerId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user