period
This commit is contained in:
parent
ffd744d86e
commit
259b0b15b5
19 changed files with 2664 additions and 41 deletions
9
Yavsc/Models/Calendar/Availability.cs
Normal file
9
Yavsc/Models/Calendar/Availability.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Yavsc.Models.Calendar
|
||||
{
|
||||
public class Availability: List<Period>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -32,13 +32,13 @@ namespace Yavsc.Models.Calendar
|
|||
/// Gets or sets the start.
|
||||
/// </summary>
|
||||
/// <value>The start.</value>
|
||||
[Required]
|
||||
[Required,Display(Name="Début")]
|
||||
public DateTime Start { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the end.
|
||||
/// </summary>
|
||||
/// <value>The end.</value>
|
||||
[Required]
|
||||
[Required,Display(Name="Fin")]
|
||||
public DateTime End { get; set; }
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue