12 lines
237 B
C#
12 lines
237 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT license.
|
|
|
|
using System;
|
|
|
|
[Serializable]
|
|
public class MaxStorageSizeProperty
|
|
{
|
|
public bool UseCustomMaxStorageSize;
|
|
public long Size = 0;
|
|
}
|