mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
9 lines
157 B
C#
9 lines
157 B
C#
class Good
|
|
{
|
|
int Size { get; set; }
|
|
|
|
bool Espresso => Size <= 4;
|
|
bool Latte => !Espresso && Size <= 8;
|
|
bool Grande => !Espresso && !Latte;
|
|
}
|