18 lines
482 B
C#
18 lines
482 B
C#
using System;
|
|
|
|
namespace Knot.Contracts.Messaging.Domain;
|
|
|
|
public class Media
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Type { get; set; } = string.Empty;
|
|
public string? Url { get; set; }
|
|
public string? ThumbnailUrl { get; set; }
|
|
public long? Size { get; set; }
|
|
public int Width { get; set; }
|
|
public int Height { get; set; }
|
|
public string? FileId { get; set; }
|
|
public string? Filename { get; set; }
|
|
public string? Duration { get; set; }
|
|
}
|