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.
38 lines
877 B
C#
38 lines
877 B
C#
using FSO.Common.DataService.Framework;
|
|
using FSO.Common.DataService.Framework.Attributes;
|
|
|
|
namespace FSO.Common.DataService.Model
|
|
{
|
|
public class Bookmark : AbstractModel
|
|
{
|
|
private uint _Bookmark_TargetID;
|
|
|
|
[Key]
|
|
public uint Bookmark_TargetID
|
|
{
|
|
get { return _Bookmark_TargetID; }
|
|
set
|
|
{
|
|
_Bookmark_TargetID = value;
|
|
NotifyPropertyChanged("Bookmark_TargetID");
|
|
}
|
|
}
|
|
|
|
private byte _Bookmark_Type;
|
|
public byte Bookmark_Type
|
|
{
|
|
get { return _Bookmark_Type; }
|
|
set
|
|
{
|
|
_Bookmark_Type = value;
|
|
NotifyPropertyChanged("Bookmark_Type");
|
|
}
|
|
}
|
|
}
|
|
|
|
public enum BookmarkType : byte
|
|
{
|
|
AVATAR = 0x01,
|
|
IGNORE_AVATAR = 0x05
|
|
}
|
|
}
|