Skip to content

Instantly share code, notes, and snippets.

@Lutando
Created March 20, 2017 19:37
Show Gist options
  • Save Lutando/d94d195f89f0d7809e6454b6e2247323 to your computer and use it in GitHub Desktop.
Save Lutando/d94d195f89f0d7809e6454b6e2247323 to your computer and use it in GitHub Desktop.
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