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