Files
Chat/ChatController/LoginKlassen/UserDaten.cs
2019-04-04 13:00:10 +02:00

37 lines
938 B
C#

using System.Collections.Generic;
namespace ChatController.LoginKlassen
{
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; }
}
}