This commit is contained in:
2023-02-19 00:43:43 +01:00
parent 9719a0c0fd
commit 1e66851113
146 changed files with 738 additions and 382 deletions

View File

@ -0,0 +1,22 @@
using MongoDB.Entities;
namespace PrivaPub.Models.Post
{
public class DmPost : Entity
{
public string GroupUserId { get; set; }
public string AnsweringToPostId { get; set; }
public string GroupId { get; set; }
public string Title { get; set; }
public string Text { get; set; }
public List<PostMedia> Media { get; set; } = new();
public List<float> Location { get; set; } = new();
public bool HasContentWarning { get; set; } = false;
public bool IsFederatedCopy { get; set; }
public DateTime CreationDate { get; set; } = DateTime.UtcNow;
public DateTime? UpdateDate { get; set; } = DateTime.UtcNow;
public string UpdateReason { get; set; }
}
}

View File

@ -0,0 +1,23 @@
using MongoDB.Entities;
namespace PrivaPub.Models.Post
{
public class Post : Entity
{
public string GroupUserId { get; set; }
public string AnsweringToPostId { get; set; }
public string GroupId { get; set; }
public string Title { get; set; }
public string Text { get; set; }
public List<PostMedia> Media { get; set; } = new();
public List<float> Location { get; set; } = new();
public float RangeKm { get; set; } = 5.0f;
public bool HasContentWarning { get; set; } = false;
public bool IsFederatedCopy { get; set; }
public DateTime CreationDate { get; set; } = DateTime.UtcNow;
public DateTime? UpdateDate { get; set; } = DateTime.UtcNow;
public string UpdateReason { get; set; }
}
}

View File

@ -0,0 +1,12 @@
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; }
}
}

View File

@ -0,0 +1,12 @@
namespace PrivaPub.Models.Post
{
public class PostMedia
{
public Guid Id { get; set; } = Guid.NewGuid();
public string ContentType { get; set; }
public string FileName { get; set; }
public string Extension { get; set; }
public string Path { get; set; }
public string URL { get; set; }
}
}