changement de candidat à l'investissement
This commit is contained in:
parent
8114c2409c
commit
be3087fff6
351 changed files with 359 additions and 497 deletions
12
ZicMoove/ZicMoove/Attributes/CurrencyAttribute.cs
Normal file
12
ZicMoove/ZicMoove/Attributes/CurrencyAttribute.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Attributes
|
||||
{
|
||||
class CurrencyAttribute: Attribute
|
||||
{
|
||||
}
|
||||
}
|
||||
22
ZicMoove/ZicMoove/Attributes/DisplayAttribute.cs
Normal file
22
ZicMoove/ZicMoove/Attributes/DisplayAttribute.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Attributes
|
||||
{
|
||||
class DisplayAttribute : Attribute
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
public DisplayAttribute()
|
||||
{
|
||||
|
||||
}
|
||||
public DisplayAttribute(string name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue