mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 10:46:31 +00:00
0625cd4157
Made-with: Cursor
9 lines
106 B
C#
9 lines
106 B
C#
namespace Azaion.Flights.Enums;
|
|
|
|
public enum ObjectStatus
|
|
{
|
|
New = 0,
|
|
Moved = 1,
|
|
Removed = 2
|
|
}
|