2023-02-19 00:43:43 +01:00
|
|
|
|
namespace PrivaPub.Models.Post
|
2023-02-18 08:52:17 +01:00
|
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|