41 lines
1015 B
C#
41 lines
1015 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ChatController.Klassen
|
|
{
|
|
public class UserDaten
|
|
{
|
|
public Dictionary<string, TestInput> Response { get; set; }
|
|
public string Message { get; set; }
|
|
public Tetserror Errors { get; set; }
|
|
public bool Success { get; set; }
|
|
}
|
|
|
|
public class InputTest
|
|
{
|
|
public TestInput User { get; set; }
|
|
}
|
|
|
|
public class TestInput
|
|
{
|
|
public long? Oid { get; set; }
|
|
public string UserId { get; set; }
|
|
public string Firstname { get; set; }
|
|
public string Lastname { get; set; }
|
|
public string Mobile { get; set; }
|
|
public string Picture { get; set; }
|
|
public bool Is_Employee { get; set; }
|
|
public string Token { get; set; }
|
|
|
|
}
|
|
|
|
public class Tetserror
|
|
{
|
|
public string[] chatcode_failed{ get; set; }
|
|
public string[] login_failed { get; set; }
|
|
}
|
|
}
|