You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
402 B
C#
21 lines
402 B
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
|
|
using System;
|
|
|
|
namespace EFCore.Jet.CustomBaseTests.GearsOfWarModel;
|
|
|
|
[Flags]
|
|
public enum MilitaryRank
|
|
{
|
|
None = 0,
|
|
Private = 1,
|
|
Corporal = 2,
|
|
Sergeant = 4,
|
|
Lieutenant = 8,
|
|
Captain = 16,
|
|
Major = 32,
|
|
Colonel = 64,
|
|
General = 128
|
|
}
|