SocialPub/PrivaPub/Models/Post/PostBoost.cs
2023-02-19 00:43:43 +01:00

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; }
}
}