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