namespace Core.Common.Base.Service
{
///
/// Enumeration that defines the possible states of an .
///
public enum ActivityStatus
{
///
/// The state of an that has been just created and is not used yet.
///
None,
///
/// The state of an that is successfully ran.
///
///
Executed,
///
/// The state of an that is not successfully ran.
///
///
Failed,
///
/// The state of an that has been cancelled.
///
///
Cancelled,
///
/// The state of an that is successfully finished.
///
///
Finished
}
}