mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-07-15 02:07:34 -04:00
42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
namespace JWLMerge.BackupFileServices.Models.Database
|
|
{
|
|
public class UserMark
|
|
{
|
|
/// <summary>
|
|
/// The user mark identifier.
|
|
/// </summary>
|
|
public int UserMarkId { get; set; }
|
|
|
|
/// <summary>
|
|
/// The index of the marking (highlight) color.
|
|
/// </summary>
|
|
public int ColorIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// The location identifier.
|
|
/// Refers to Location.LocationId
|
|
/// </summary>
|
|
public int LocationId { get; set; }
|
|
|
|
/// <summary>
|
|
/// The style index (unused?)
|
|
/// </summary>
|
|
public int StyleIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// The guid. Useful in merging!
|
|
/// </summary>
|
|
public string UserMarkGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// The highlight version. Semantics unknown!
|
|
/// </summary>
|
|
public int Version { get; set; }
|
|
|
|
public UserMark Clone()
|
|
{
|
|
return (UserMark)MemberwiseClone();
|
|
}
|
|
}
|
|
}
|