SocialPub/SocialPub/Models/Post/PostBoost.cs

13 lines
239 B
C#
Raw Normal View History

2023-02-18 08:52:17 +01:00
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; }
}
}