// // ContractData.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace NosSmooth.Core.Tests.Contracts; /// /// Data for updating a contract. /// /// The type of the data. public class ContractData { /// /// Initializes a new instance of the class. /// /// The data to pass. public ContractData(T data) { Data = data; } /// /// Gets the data. /// public T Data { get; } }