Files
2025-10-27 17:39:18 -04:00

14 lines
194 B
C#

namespace Prefab.Data;
/// <summary>
/// Represents the available statuses that an entity's record can be in.
/// </summary>
public enum AuditStatus
{
Active,
Inactive,
Deleted
}