Basically working svelte interaction with orchard
This commit is contained in:
48
src/OAP/Oap.Api.v1/GetApplicationResponseDto.g.cs
Normal file
48
src/OAP/Oap.Api.v1/GetApplicationResponseDto.g.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
// <auto-generated>
|
||||
// DO NOT EDIT: generated by fsdgencsharp
|
||||
// </auto-generated>
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Facility.Core;
|
||||
|
||||
namespace Oap.Api.v1
|
||||
{
|
||||
/// <summary>
|
||||
/// Response for GetApplication.
|
||||
/// </summary>
|
||||
[System.CodeDom.Compiler.GeneratedCode("fsdgencsharp", "")]
|
||||
public sealed partial class GetApplicationResponseDto : ServiceDto<GetApplicationResponseDto>
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates an instance.
|
||||
/// </summary>
|
||||
public GetApplicationResponseDto()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The requested widget.
|
||||
/// </summary>
|
||||
public ApplicationDto Application { get; set; }
|
||||
|
||||
public string ETag { get; set; }
|
||||
|
||||
public bool? NotModified { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The JSON serializer.
|
||||
/// </summary>
|
||||
protected override JsonServiceSerializer JsonSerializer => SystemTextJsonServiceSerializer.Instance;
|
||||
|
||||
/// <summary>
|
||||
/// Determines if two DTOs are equivalent.
|
||||
/// </summary>
|
||||
public override bool IsEquivalentTo(GetApplicationResponseDto other)
|
||||
{
|
||||
return other != null &&
|
||||
ServiceDataUtility.AreEquivalentDtos(Application, other.Application) &&
|
||||
ETag == other.ETag &&
|
||||
NotModified == other.NotModified;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user