Created
March 20, 2017 19:37
-
-
Save Lutando/d94d195f89f0d7809e6454b6e2247323 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Forum.Models | |
{ | |
public class Post | |
{ | |
public Guid Id { get; private set; } | |
public Guid UserId { get; private set; } | |
public DateTime CreatedAt { get; private set; } | |
public string Text { get; private set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment