SocialPub/PrivaPub/Models/Post/PostBoost.cs

13 lines
238 B
C#
Raw Normal View History

2023-02-19 00:43:43 +01:00
namespace PrivaPub.Models.Post
2023-02-18 08:52:17 +01:00
{
public class PostBoost
{
public string PostId { get; set; }
public string GroupUserId { get; set; }
public bool IsFederatedCopy { get; set; }
public DateTime CreationDate { get; set; }
}
}