13 lines
238 B
C#
13 lines
238 B
C#
namespace PrivaPub.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; }
|
|
}
|
|
}
|