mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
12 lines
No EOL
300 B
C#
12 lines
No EOL
300 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Models.Users
|
|
{
|
|
public class UserTrack : UserRatingBase
|
|
{
|
|
public DateTime? LastPlayed { get; set; }
|
|
public int? PlayedCount { get; set; }
|
|
public DataToken Track { get; set; }
|
|
public DataToken User { get; set; }
|
|
}
|
|
} |