13 lines
308 B
C#
13 lines
308 B
C#
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; }
|
|
}
|
|
}
|