namespace GerbilManagerWebAPI.Models
{
/// Lifecycle status of a gerbil. Serialised as the string name on the wire.
public enum GerbilStatus
{
Active = 0,
Deceased = 1,
GivenAway = 2,
/// Alive, at home, offered for Abgabe ("Abzugeben"). Drives FEAT-12 sale listing.
ForSale = 3
}
}