using System.ComponentModel.DataAnnotations;
namespace Bit.Core.Vault.Enums;
public enum SecurityTaskStatus : byte
{
///
/// Default status for newly created tasks that have not been completed.
///
[Display(Name = "Pending")]
Pending = 0,
///
/// Status when a task is considered complete and has no remaining actions
///
[Display(Name = "Completed")]
Completed = 1,
}