freeso/TSOClient/FSO.Server.DataService/Framework/Attributes/ClientSourced.cs
riperiperi b57ebbd141 Cleanup: Remove most unused usings and MPL per-file licenses
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
2023-11-25 03:45:29 +00:00

16 lines
500 B
C#

using System;
namespace FSO.Common.DataService.Framework.Attributes
{
/// <summary>
/// Properties with this attribute present will not be updated when the entity has been marked as client sourced.
/// (eg. skills info is sourced from the current lot VM if the avatar in question is in it.)
/// </summary>
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
public class ClientSourced : Attribute
{
public ClientSourced()
{
}
}
}