Skip to content

Instantly share code, notes, and snippets.

@mttchpmn
Created February 8, 2021 08:49
Show Gist options
  • Save mttchpmn/490169908aca5b4e249d8153f1eb1e5b to your computer and use it in GitHub Desktop.
Save mttchpmn/490169908aca5b4e249d8153f1eb1e5b to your computer and use it in GitHub Desktop.
C# Post Class
using System;
namespace Sandbox
{
public class Post
{
public string Title { get; set; }
public string Description { get; set; }
public DateTime CreatedAt { get; set; }
public int Score { get; private set; }
public void UpVote() => Score++;
public void DownVote() => Score--;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment