-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
EmailServiceResourcePatch.cs
28 lines (23 loc) · 1.12 KB
/
EmailServiceResourcePatch.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
namespace Azure.ResourceManager.Communication.Models
{
/// <summary> A class representing update parameters for EmailService resource. </summary>
public partial class EmailServiceResourcePatch : CommunicationAcceptTags
{
/// <summary> Initializes a new instance of <see cref="EmailServiceResourcePatch"/>. </summary>
public EmailServiceResourcePatch()
{
}
/// <summary> Initializes a new instance of <see cref="EmailServiceResourcePatch"/>. </summary>
/// <param name="tags"> Tags of the service which is a list of key value pairs that describe the resource. </param>
/// <param name="serializedAdditionalRawData"> Keeps track of any properties unknown to the library. </param>
internal EmailServiceResourcePatch(IDictionary<string, string> tags, IDictionary<string, BinaryData> serializedAdditionalRawData) : base(tags, serializedAdditionalRawData)
{
}
}
}