hidden activity

This commit is contained in:
Paul Schneider 2017-02-20 15:53:25 +01:00
commit 6ca18b65f4
25 changed files with 5706 additions and 13 deletions

View file

@ -14,22 +14,22 @@ namespace Yavsc.Models.Messaging
/// <summary>
/// The title.
/// </summary>
[Required, Display(Name = "Title")]
[Required, Display(Name = "Titre")]
public string title { get; set; }
/// <summary>
/// The body.
/// </summary>
[Required, Display(Name = "Title")]
[Required, Display(Name = "Corps")]
public string body { get; set; }
/// <summary>
/// The icon.
/// </summary>
[Display(Name = "Icon")]
[Display(Name = "Icône")]
public string icon { get; set; }
/// <summary>
/// The sound.
/// </summary>
[Display(Name = "Sound")]
[Display(Name = "Son")]
public string sound { get; set; }
/// <summary>
/// The tag.
@ -39,12 +39,12 @@ namespace Yavsc.Models.Messaging
/// <summary>
/// The color.
/// </summary>
[Display(Name = "Color")]
[Display(Name = "Couleur")]
public string color { get; set; }
/// <summary>
/// The click action.
/// </summary>
[Required, Display(Name = "Click action")]
[Required, Display(Name = "Label du click")]
public string click_action { get; set; }
}
}