use links
parent
7043b9d4e7
commit
e17da12493
@ -1,11 +1,20 @@
|
|||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
namespace Yavsc.Models.Relationship
|
namespace Yavsc.Models.Relationship
|
||||||
{
|
{
|
||||||
public class Link
|
public class Link
|
||||||
{
|
{
|
||||||
|
[Display(Name="Hyper référence")]
|
||||||
public string HRef { get; set; }
|
public string HRef { get; set; }
|
||||||
public string Rel { get; set; }
|
|
||||||
|
[Display(Name="Methode Http attendue coté serveur")]
|
||||||
public string Method { get; set; }
|
public string Method { get; set; }
|
||||||
|
|
||||||
|
[Display(Name="Classe de lien")]
|
||||||
|
public string Rel { get; set; }
|
||||||
|
|
||||||
|
[Display(Name="Type mime du contenu attendu côté client")]
|
||||||
|
public string ContentType { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue