blob: 583921828df0ed4a4ffd52769f2dfde685f205a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
namespace Timeline.Models
{
public class TimelineBookmark
{
public TimelineBookmark(string timelineOwner, string timelineName, int position)
{
TimelineOwner = timelineOwner;
TimelineName = timelineName;
Position = position;
}
public string TimelineOwner { get; set; }
public string TimelineName { get; set; }
public int Position { get; set; }
}
}
|