Chat: User suplantation protection.

This commit is contained in:
2015-06-07 14:32:22 +02:00
parent 968fba8082
commit de37b36c10
3 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Scrummer.Code.Entities
{
public class OperationStatus
{
public bool IsOK { get; set; }
public string Message { get; set; }
}
}