16 lines
316 B
C#
16 lines
316 B
C#
public class Post {
|
|
|
|
public int userId {get; set;}
|
|
public int id {get; set;}
|
|
public string title {get; set;}
|
|
public string body {get; set;}
|
|
|
|
public Post(int userId, int id, string title, string body){
|
|
userId = userId;
|
|
id = id;
|
|
title = title;
|
|
body = body;
|
|
}
|
|
|
|
}
|