Skip to content

Instantly share code, notes, and snippets.

@mortezadalil
Created December 8, 2019 09:44
Show Gist options
  • Save mortezadalil/954baba5fafe83d902545769036c1720 to your computer and use it in GitHub Desktop.
Save mortezadalil/954baba5fafe83d902545769036c1720 to your computer and use it in GitHub Desktop.
public class AddPostRequest : IUseCaseRequest<AddPostResponse>
{
public string Title { get; set; }
public string Content { get; set; }
public DateTime CreatedDate { get; set; }
public DateTime ModifiedDate { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment