This repository has been archived on 2023-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
cuipod/Chatter/Models/PostModel.cs
Dmitrii Kollerov 388ebd964b add basic app
2022-03-10 15:39:31 +07:00

14 lines
229 B
C#

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; }
}
}