Skip to content

Commit

Permalink
MessageManager.Domain 领域调整
Browse files Browse the repository at this point in the history
  • Loading branch information
yuezhongxin committed Jul 1, 2014
1 parent ecf9a7e commit 67baf53
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
7 changes: 2 additions & 5 deletions MessageManager.Domain/DomainModel/Message.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
**/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MessageManager.Domain.DomainModel
{
Expand All @@ -19,8 +16,8 @@ public Message(string title, string content, User sendUser)
throw new ArgumentNullException();
}
this.ID = Guid.NewGuid().ToString();
this.Title=title;
this.Content=content;
this.Title = title;
this.Content = content;
this.SendTime = DateTime.Now;
this.State = MessageState.NoRead;
this.SendUser = sendUser;
Expand Down
4 changes: 0 additions & 4 deletions MessageManager.Domain/DomainModel/MessageState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
* address:https://www.github.com/yuezhongxin/MessageManager
**/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MessageManager.Domain.DomainModel
{
Expand Down
3 changes: 0 additions & 3 deletions MessageManager.Domain/DomainModel/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
**/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MessageManager.Domain.DomainModel
{
Expand Down

0 comments on commit 67baf53

Please sign in to comment.