/****************************************************************************** // MARECHAI: Master repository of computing history artifacts information // ---------------------------------------------------------------------------- // // Author(s) : Natalia Portillo // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright © 2003-2020 Natalia Portillo *******************************************************************************/ using System.ComponentModel.DataAnnotations.Schema; namespace Marechai.Database.Models { public class MediaDumpSubchannelImage : BaseModel { public short TrackSequence { get; set; } public SubchannelStatus Status { get; set; } public ulong Size { get; set; } [Column(TypeName = "binary(16)")] public string Md5 { get; set; } [Column(TypeName = "binary(20)")] public string Sha1 { get; set; } [Column(TypeName = "binary(32)")] public string Sha256 { get; set; } [Column(TypeName = "binary(64)")] public string Sha3 { get; set; } public string Spamsum { get; set; } public ulong? MediaDumpId { get; set; } public ulong? TrackId { get; set; } public virtual MediaDump MediaDump { get; set; } public virtual MediaDumpTrackImage Track { get; set; } } }