using System.ComponentModel.DataAnnotations;
using Newtonsoft.Json;
public class CiBuildSettings
{
///
/// The global process environment variables
///
///
[JsonPropertyAttribute("env")]
public string[] Environment { get; set; }
///
/// The required building command.
///
///
[Required]
[JsonPropertyAttribute("build")]
public CommandPipe Build { get; set; }
///
/// A preparing command.
/// It is optional, but when specified,
/// must end ok in order to launch the build.
///
///
[JsonPropertyAttribute("prepare")]
public CommandPipe Prepare { get; set; }
///
/// A post-production command,
/// for an example, some publishing,
/// push in prod env ...
/// only fired on successful build.
///
///
[JsonPropertyAttribute("post_build")]
public CommandPipe PostBuild { get; set; }
///
/// Additional emails, as dest of notifications
///
///
[JsonPropertyAttribute("emails")]
public string[] Emails { get; set; }
}