namespace FoodsharingSiegen.Contracts.Entity
{
///
/// The interaction type enum
///
public enum InteractionType : int
{
///
/// The ein ab interaction type
///
EinAb = 10,
///
/// The welcome interaction type
///
Welcome = 20,
///
/// The id check interaction type
///
IdCheck = 30,
///
/// The print pass interaction type
///
PrintPass = 40,
///
/// The pdf pass interaction type
///
PdfPass = 50,
///
/// The verify interaction type
///
Verify = 60,
///
/// The complete interaction type
///
Complete = 70
}
}