mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
16 lines
500 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|