- GerbilStatus += ForSale ("Abzugeben", FEAT-12 sale listing); enum-as-string, no DB change.
- Contact: contactInfo -> structured email/phone/address (FEAT-13 sale contracts); name/notes kept.
- ColorVariety seed 18 -> 73 from Kevin's GEN-2 colorVarietySeed.generated.json (18 frozen first).
- Regenerated InitialCreate migration (Contacts email/phone/address cols, 73 seed rows).
13 lines
377 B
C#
13 lines
377 B
C#
namespace GerbilManagerWebAPI.Models
|
|
{
|
|
/// <summary>Lifecycle status of a gerbil. Serialised as the string name on the wire.</summary>
|
|
public enum GerbilStatus
|
|
{
|
|
Active = 0,
|
|
Deceased = 1,
|
|
GivenAway = 2,
|
|
/// <summary>Alive, at home, offered for Abgabe ("Abzugeben"). Drives FEAT-12 sale listing.</summary>
|
|
ForSale = 3
|
|
}
|
|
}
|