13 lines
239 B
C#
13 lines
239 B
C#
|
namespace SocialPub.Models.Post
|
|||
|
{
|
|||
|
public class PostBoost
|
|||
|
{
|
|||
|
public string PostId { get; set; }
|
|||
|
public string GroupUserId { get; set; }
|
|||
|
|
|||
|
public bool IsFederatedCopy { get; set; }
|
|||
|
|
|||
|
public DateTime CreationDate { get; set; }
|
|||
|
}
|
|||
|
}
|