20 lines
557 B
C#
20 lines
557 B
C#
|
namespace LDBproject.Entities.Enums
|
|||
|
{
|
|||
|
[Flags]
|
|||
|
public enum Genres
|
|||
|
{
|
|||
|
None = 0, // 00000000
|
|||
|
Adventure = 1, // 00000001
|
|||
|
Fantasy = 2, // 00000010
|
|||
|
Mystery = 4, // 00000100
|
|||
|
Fiction = 8, // 00001000
|
|||
|
Suspense = 16, // 00010000
|
|||
|
Romance = 32, // 00100000
|
|||
|
Crime = 64, // 01000000
|
|||
|
Talent = 128, // 10000000
|
|||
|
Realism = 256, // 10000001
|
|||
|
Horror = 512, // 10000010
|
|||
|
Historical = 1024, // 10000011
|
|||
|
}
|
|||
|
}
|