2020-06-01 02:12:50 +01:00
|
|
|
/******************************************************************************
|
|
|
|
|
// MARECHAI: Master repository of computing history artifacts information
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// --[ 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2020-12-31 23:24:15 +00:00
|
|
|
// Copyright © 2003-2021 Natalia Portillo
|
2020-06-01 02:12:50 +01:00
|
|
|
*******************************************************************************/
|
|
|
|
|
|
2025-11-13 16:19:14 +00:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
2025-11-13 15:16:41 +00:00
|
|
|
namespace Marechai.Data.Dtos;
|
2025-11-13 04:05:35 +00:00
|
|
|
|
2025-11-13 15:21:11 +00:00
|
|
|
public class ScreenByMachineDto : BaseDto<long>
|
2020-05-29 18:36:05 +01:00
|
|
|
{
|
2025-11-13 16:19:14 +00:00
|
|
|
[JsonPropertyName("machine_id")]
|
|
|
|
|
public int MachineId { get; set; }
|
|
|
|
|
[JsonPropertyName("screen")]
|
|
|
|
|
public ScreenDto Screen { get; set; }
|
|
|
|
|
[JsonPropertyName("screen_id")]
|
|
|
|
|
public int ScreenId { get; set; }
|
2020-05-29 18:36:05 +01:00
|
|
|
}
|