19 lines
462 B
C#
19 lines
462 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace LeanCloud.Realtime
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
|
|||
|
public sealed class AVIMMessageFieldNameAttribute: Attribute
|
|||
|
{
|
|||
|
public AVIMMessageFieldNameAttribute(string fieldName)
|
|||
|
{
|
|||
|
FieldName = fieldName;
|
|||
|
}
|
|||
|
|
|||
|
public string FieldName { get; private set; }
|
|||
|
}
|
|||
|
}
|