18 lines
365 B
C#
18 lines
365 B
C#
using Common.Domain.Abstractions;
|
|
|
|
namespace Modules.Media.Core.Domain;
|
|
|
|
public class MediaInfo : Entity
|
|
{
|
|
public MediaInfoType Type { get; set; } = MediaInfoType.OtherFile;
|
|
//public string ContentType { get; set; } = default!;
|
|
public string Url { get; set; } = default!;
|
|
}
|
|
|
|
public enum MediaInfoType
|
|
{
|
|
Image,
|
|
Video,
|
|
Link,
|
|
OtherFile
|
|
} |