Buecherwurm/StatusEnum.cs

8 lines
98 B
C#
Raw Permalink Normal View History

2020-04-23 11:27:32 +00:00
namespace Bücherwurm
{
2020-04-24 13:54:17 +00:00
public enum StatusEnum
2020-04-23 11:27:32 +00:00
{
2020-04-24 13:54:17 +00:00
Available,
Lended
2020-04-23 11:27:32 +00:00
}
}