//
// DO NOT EDIT: generated by fsdgencsharp
//
using System;
using System.Collections.Generic;
using Facility.Core;
namespace Oap.Api.v1
{
///
/// Response for GetApplication.
///
[System.CodeDom.Compiler.GeneratedCode("fsdgencsharp", "")]
public sealed partial class GetApplicationResponseDto : ServiceDto
{
///
/// Creates an instance.
///
public GetApplicationResponseDto()
{
}
///
/// The requested widget.
///
public ApplicationDto Application { get; set; }
public string ETag { get; set; }
public bool? NotModified { get; set; }
///
/// The JSON serializer.
///
protected override JsonServiceSerializer JsonSerializer => SystemTextJsonServiceSerializer.Instance;
///
/// Determines if two DTOs are equivalent.
///
public override bool IsEquivalentTo(GetApplicationResponseDto other)
{
return other != null &&
ServiceDataUtility.AreEquivalentDtos(Application, other.Application) &&
ETag == other.ETag &&
NotModified == other.NotModified;
}
}
}