MyBookmark/Modules.Library.Domain/Models/MediaInfo.cs
THE_KONDRAT 7b16d72329 ui and login
mongo => postgres
2024-11-03 16:08:39 +03:00

9 lines
285 B
C#

using Modules.Library.Domain.Entities;
namespace Modules.Library.Domain.Models;
public class MediaInfo
{
public MediaInfoType Type { get; set; } = MediaInfoType.OtherFile;
public string ContentType { get; set; } = default!;
public string Url { get; set; } = default!;
}