yavsc/Yavsc.Server/Models/Relationship/HyperLink.cs

20 lines
517 B
C#
Raw Normal View History

2017-05-31 01:00:56 +02:00
using System.ComponentModel.DataAnnotations;
2017-05-15 13:36:14 +02:00
namespace Yavsc.Models.Relationship
{
2017-06-01 12:02:24 +02:00
public class HyperLink
2017-05-15 13:36:14 +02:00
{
2017-05-31 01:00:56 +02:00
[Display(Name="Hyper référence")]
2017-05-15 13:36:14 +02:00
public string HRef { get; set; }
2017-05-31 01:00:56 +02:00
[Display(Name="Methode Http attendue coté serveur")]
2017-05-15 13:36:14 +02:00
public string Method { get; set; }
2017-05-31 01:00:56 +02:00
[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; }
2017-05-15 13:36:14 +02:00
}
}