ObjectTransport icon indicating copy to clipboard operation
ObjectTransport copied to clipboard

Example of use on main page

Open timur4000 opened this issue 6 years ago • 0 comments

Your example is incorrect. The model

public class LoginSuccess
{
        public string Name {get;set;}        
        public string Password {get;set;}    
}

should be like this

public class LoginSuccess
{
        public string Name {get;set;}        
        public string Message {get;set;}    
}

timur4000 avatar Mar 21 '19 11:03 timur4000