using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AquaCubeIT.Service.NetFloppy.DataAccess.Models { public class MediaImage { public Guid Id { get; set; } public required string Name { get; set; } public string? Description { get; set; } public required MediaType MediaType { get; set; } public long SizeInBytes { get; set; } public int Hash { get; set; } public long NoOfBlocks { get; set; } public long BlockSize { get; set; } public DateTime DateStamp { get; set; } } }