Skip to content

Instantly share code, notes, and snippets.

@MarcoNicolodi
Created October 13, 2019 17:33
Show Gist options
  • Save MarcoNicolodi/677e19a4d4501383c778bfb0f7f8e545 to your computer and use it in GitHub Desktop.
Save MarcoNicolodi/677e19a4d4501383c778bfb0f7f8e545 to your computer and use it in GitHub Desktop.
Anemic proposal with public setters
public class Proposal
{
public DateTime SentAt { get; set; }
public DateTime AcceptedAt { get; set; }
public ProposalStatus Status { get; set; }
public Guid CandidateId { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment