|
0
|
1 |
using System; |
|
|
2 |
using System.Net; |
|
|
3 |
using System.Windows; |
|
|
4 |
using System.Windows.Controls; |
|
|
5 |
using System.Windows.Documents; |
|
|
6 |
using System.Windows.Ink; |
|
|
7 |
using System.Windows.Input; |
|
|
8 |
using System.Windows.Media; |
|
|
9 |
using System.Windows.Media.Animation; |
|
|
10 |
using System.Windows.Shapes; |
|
|
11 |
using System.Collections.Generic; |
|
|
12 |
namespace Iri.Modernisation.Data.Models |
|
|
13 |
{ |
|
|
14 |
/// <summary> |
|
|
15 |
/// Liens polémique |
|
|
16 |
/// </summary> |
|
|
17 |
public class PolemicLink |
|
|
18 |
{ |
|
|
19 |
/// <summary> |
|
|
20 |
/// Element d'origine du lien |
|
|
21 |
/// </summary> |
|
|
22 |
public PolemicElement FromElement { get; set; } |
|
|
23 |
|
|
|
24 |
/// <summary> |
|
|
25 |
/// Element de destination du lien |
|
|
26 |
/// </summary> |
|
|
27 |
public PolemicElement ToElement { get; set; } |
|
|
28 |
|
|
|
29 |
/// <summary> |
|
|
30 |
/// Type du lien |
|
|
31 |
/// </summary> |
|
|
32 |
public PolemicElementType Type { get; set; } |
|
|
33 |
} |
|
|
34 |
} |