14 lines
194 B
C#
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
|
|
} |