CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
SerializationAttribute.cs
Go to the documentation of this file.
1#if !NETSTANDARD1_6 && !WINDOWS_UWP
2#if NETFX_CORE
3//-----------------------------------------------------------------------
4// <copyright file="SerializationAttribute.cs" company="Marimer LLC">
5// Copyright (c) Marimer LLC. All rights reserved.
6// Website: https://cslanet.com
7// </copyright>
8// <summary>Indicates that an object may be</summary>
9//-----------------------------------------------------------------------
10using System;
11
12namespace System
13{
18 [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum)]
19 public class SerializableAttribute : Attribute
20 {
21 }
22}
23#else
24[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.SerializableAttribute))]
25#endif
26#endif