add basic app
This commit is contained in:
17
Chatter/Models/MessageModel.cs
Normal file
17
Chatter/Models/MessageModel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Chatter.Models
|
||||
{
|
||||
public class MessageModel
|
||||
{
|
||||
public DateTime CreateDate { set; get; }
|
||||
|
||||
public string Text { set; get; }
|
||||
|
||||
public string User { set; get; }
|
||||
}
|
||||
}
|
||||
13
Chatter/Models/PostModel.cs
Normal file
13
Chatter/Models/PostModel.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Chatter.Models
|
||||
{
|
||||
public class PostModel
|
||||
{
|
||||
public string Text { set; get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user