// // DO NOT EDIT: generated by fsdgencsharp // using System; using System.Collections.Generic; using Facility.Core; namespace Oap.Api.v1 { /// /// Response for UpdateApplication. /// [System.CodeDom.Compiler.GeneratedCode("fsdgencsharp", "")] public sealed partial class UpdateApplicationResponseDto : ServiceDto { /// /// Creates an instance. /// public UpdateApplicationResponseDto() { } /// /// The updated 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(UpdateApplicationResponseDto other) { return other != null && ServiceDataUtility.AreEquivalentDtos(Application, other.Application); } } }